示例#1
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
示例#2
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
示例#3
0
 def doi(self):
     return xutil.xp_first_text(self.xml, "DOI")
示例#4
0
 def pmcid(self):
     return xutil.xp_first_text(self.xml, "pmcid")
示例#5
0
 def doi(self):
     return xutil.xp_first_text(self.xml, "//art-admin/doi")
示例#6
0
 def publisher(self):
     return xutil.xp_first_text(self.xml, "//publisher/orgname/nameelt")
示例#7
0
 def copyright_statement(self):
     return xutil.xp_first_text(self.xml, "//journalref/cpyrt")
 def title(self):
     return xutil.xp_first_text(self.xml, "title")
示例#9
0
 def title(self):
     # 2018-01-31 TD : adding the default value "no title"
     # 2018-01-30 TD : insert the string(...) to handle html-in-xml cases correctly
     return xutil.xp_first_text(self.xml, "string(//art-front/titlegrp/title)", default="no title")
示例#10
0
 def publication_type(self):
     return xutil.xp_first_text(self.xml, "//pubTypeList/pubType")
示例#11
0
 def doi(self):
     return xutil.xp_first_text(self.xml, "//article-meta/article-id[@pub-id-type='doi']")
示例#12
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
示例#13
0
 def publisher(self):
     return xutil.xp_first_text(self.xml, "//publisher/publisher-name")
示例#14
0
 def copyright_statement(self):
     return xutil.xp_first_text(self.xml, "//copyright-statement")
示例#15
0
 def language(self):
     return xutil.xp_first_text(self.xml, "language")
示例#16
0
 def author_string(self):
     return xutil.xp_first_text(self.xml, "//authorString")
 def title(self):
     return xutil.xp_first_text(self.xml, "//title-group/article-title")