Journals Python Module

Contains model for Journal.

class pacifica.metadata.orm.journals.Journals(*args, **kwargs)[source]

Journal model and associated fields.

Attributes:
Name Description
name name of the journal
author impact factor of the journal
website_url website for the journal (optional)
encoding language encoding for the name
DoesNotExist

alias of JournalsDoesNotExist

_meta = <peewee.Metadata object>
_schema = <peewee.SchemaManager object>
citations
created = <ExtendDateTimeField: Journals.created>
deleted = <ExtendDateTimeField: Journals.deleted>
encoding = <CharField: Journals.encoding>
from_hash(obj)[source]

Convert the hash into the object.

id = <AutoField: Journals.id>
impact_factor = <FloatField: Journals.impact_factor>
name = <CharField: Journals.name>
to_hash(**flags)[source]

Convert the object to a hash.

updated = <ExtendDateTimeField: Journals.updated>
website_url = <CharField: Journals.website_url>
classmethod where_clause(kwargs)[source]

PeeWee specific where clause used for search.