Esempio n. 1
0
 def issns(self):
     issn = xutil.xp_first_text(self.xml, "//journalInfo/journal/ISSN")
     essn = xutil.xp_first_text(self.xml, "//journalInfo/journal/ESSN")
     issns = []
     if issn is not None:
         issns.append(issn)
     if essn is not None:
         issns.append(essn)
     return issns
Esempio n. 2
0
 def publication_date(self):
     pd = xutil.xp_first_text(self.xml, "firstPublicationDate")
     if pd is not None:
         return pd
     pd = xutil.xp_first_text(self.xml, "electronicPublicationDate")
     if pd is not None:
         return pd
     pd = xutil.xp_first_text(self.xml,
                              "//journalInfo/printPublicationDate")
     return pd
Esempio n. 3
0
 def author_string(self):
     return xutil.xp_first_text(self.xml, "//authorString")
Esempio n. 4
0
 def doi(self):
     return xutil.xp_first_text(self.xml, "DOI")
Esempio n. 5
0
 def pmcid(self):
     return xutil.xp_first_text(self.xml, "pmcid")
Esempio n. 6
0
 def language(self):
     return xutil.xp_first_text(self.xml, "language")
Esempio n. 7
0
 def title(self):
     return xutil.xp_first_text(self.xml, "title")
Esempio n. 8
0
 def publication_type(self):
     return xutil.xp_first_text(self.xml, "//pubTypeList/pubType")
Esempio n. 9
0
 def doi(self):
     return xutil.xp_first_text(
         self.xml, "//article-meta/article-id[@pub-id-type='doi']")
Esempio n. 10
0
 def pmcid(self):
     id = xutil.xp_first_text(
         self.xml, "//article-meta/article-id[@pub-id-type='pmcid']")
     if id is not None and not id.startswith("PMC"):
         id = "PMC" + id
     return id
Esempio n. 11
0
 def publisher(self):
     return xutil.xp_first_text(self.xml, "//publisher/publisher-name")
Esempio n. 12
0
 def copyright_statement(self):
     return xutil.xp_first_text(self.xml, "//copyright-statement")
Esempio n. 13
0
 def title(self):
     return xutil.xp_first_text(self.xml, "//title-group/article-title")