journals.models.journal module¶
-
class
journals.models.journal.Journal(*args, **kwargs)[source]¶ Bases:
django.db.models.base.ModelJournal is a container of Publications with a unique issn and doi_label.
Publications may be categorized into issues or issues and volumes.
-
discipline¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
name¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
name_abbrev¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
doi_label¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
issn¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
active¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
structure¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
refereeing_period¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
style¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
blurb¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
list_order¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
description¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
scope¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
content¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
acceptance_criteria¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
minimal_nr_of_reports¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
has_DOAJ_Seal¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
template_latex_tgz¶ The descriptor for the file attribute on the model instance. Return a FieldFile when accessed so you can write code like:
>>> from myapp.models import MyModel >>> instance = MyModel.objects.get(pk=1) >>> instance.file.size
Assign a file object on assignment so you can do:
>>> with open('/path/to/hello.world', 'r') as f: ... instance.file = File(f)
-
objects= <django.db.models.manager.ManagerFromJournalQuerySet object>¶
-
property
doi_string¶ Return DOI including the SciPost registrant prefix.
-
property
has_issues¶
-
property
has_volumes¶
-
citation_rate(tier=None)[source]¶ Return the citation rate in units of nr citations per article per year.
-
citedby_impact_factor(year)[source]¶ Compute the impact factor for a given year YYYY, from Crossref cited-by data.
This is defined as the total number of citations in year YYYY for all papers published in years YYYY-1 and YYYY-2, divided by the number of papers published in year YYYY.
-
exception
DoesNotExist¶ Bases:
django.core.exceptions.ObjectDoesNotExist
-
exception
MultipleObjectsReturned¶ Bases:
django.core.exceptions.MultipleObjectsReturned
-
alternativerecommendation_set¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
editorialdecision_set¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
eicrecommendation_set¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
get_discipline_display(*, field=<django.db.models.fields.CharField: discipline>)¶
-
get_structure_display(*, field=<django.db.models.fields.CharField: structure>)¶
-
id¶ A wrapper for a deferred-loading field. When the value is read from this object the first time, the query is executed.
-
issues¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
publications¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
submission_set¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
submissiontiering_set¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-
volumes¶ Accessor to the related objects manager on the reverse side of a many-to-one relation.
In the example:
class Child(Model): parent = ForeignKey(Parent, related_name='children')
Parent.childrenis aReverseManyToOneDescriptorinstance.Most of the implementation is delegated to a dynamically defined manager class built by
create_forward_many_to_many_manager()defined below.
-