Example #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
Example #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
Example #3
0
 def author_string(self):
     return xutil.xp_first_text(self.xml, "//authorString")
Example #4
0
 def doi(self):
     return xutil.xp_first_text(self.xml, "DOI")
Example #5
0
 def pmcid(self):
     return xutil.xp_first_text(self.xml, "pmcid")
Example #6
0
 def language(self):
     return xutil.xp_first_text(self.xml, "language")
Example #7
0
 def title(self):
     return xutil.xp_first_text(self.xml, "title")
Example #8
0
 def publication_type(self):
     return xutil.xp_first_text(self.xml, "//pubTypeList/pubType")
Example #9
0
 def doi(self):
     return xutil.xp_first_text(
         self.xml, "//article-meta/article-id[@pub-id-type='doi']")
Example #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
Example #11
0
 def publisher(self):
     return xutil.xp_first_text(self.xml, "//publisher/publisher-name")
Example #12
0
 def copyright_statement(self):
     return xutil.xp_first_text(self.xml, "//copyright-statement")
Example #13
0
 def title(self):
     return xutil.xp_first_text(self.xml, "//title-group/article-title")