ExperimentalStudy

class database.models.ExperimentalStudy(*args, **kwargs)

Bases: database.models.custom_base_model.CustomBaseModel

An empirical study based on a particular Research Corpus.

title

models.CharField – The title of the Experimental Study

published

models.BooleanField – Whether or not the Experimental Study was published

date

models.DateField – The date in which the Experimental Study was published or performed

models.URLField – A link to the a paper of the Experimental Study

research_corpus_used

models.ForeignKey – A reference to the Research Corpus upon which the Experimental Study is based

institution

models.ForeignKey – A reference to the Institution related to this ExperimentalStudy

authors

models.CharField – The authors of this Experimental Study

Attributes Summary

authors A wrapper for a deferred-loading field.
date A wrapper for a deferred-loading field.
id A wrapper for a deferred-loading field.
institution Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
institution_id A wrapper for a deferred-loading field.
link A wrapper for a deferred-loading field.
objects
published A wrapper for a deferred-loading field.
research_corpus_used Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.
research_corpus_used_id A wrapper for a deferred-loading field.
title A wrapper for a deferred-loading field.

Methods Summary

get_next_by_date_created(*[, field, is_next])
get_next_by_date_updated(*[, field, is_next])
get_previous_by_date_created(*[, field, is_next])
get_previous_by_date_updated(*[, field, is_next])

Attributes Documentation

authors

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

date

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

institution

Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Child.parent is a ForwardManyToOneDescriptor instance.

institution_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

link

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

objects = <django.db.models.manager.Manager object>
published

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

research_corpus_used

Accessor to the related object on the forward side of a many-to-one or one-to-one (via ForwardOneToOneDescriptor subclass) relation.

In the example:

class Child(Model):
    parent = ForeignKey(Parent, related_name='children')

Child.parent is a ForwardManyToOneDescriptor instance.

research_corpus_used_id

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

title

A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.

Methods Documentation

get_next_by_date_created(*, field=<django.db.models.fields.DateTimeField: date_created>, is_next=True, **kwargs)
get_next_by_date_updated(*, field=<django.db.models.fields.DateTimeField: date_updated>, is_next=True, **kwargs)
get_previous_by_date_created(*, field=<django.db.models.fields.DateTimeField: date_created>, is_next=False, **kwargs)
get_previous_by_date_updated(*, field=<django.db.models.fields.DateTimeField: date_updated>, is_next=False, **kwargs)