def scopus_link(self):
     """URL to the document page on Scopus."""
     return get_link(self._json, 1)
 def self_link(self):
     """URL to Scopus API page of this document."""
     return get_link(self._json, 0)
예제 #3
0
 def self_link(self):
     """URL to the source's API page."""
     return get_link(self._json, 0, ["link"])
 def citedby_link(self):
     """URL to Scopus page listing citing documents."""
     return get_link(self._json, 2)
 def coauthor_link(self):
     """URL to Scopus API search page for coauthors."""
     return get_link(self._json, 3)
예제 #6
0
 def scopus_source_link(self):
     """URL to info site on scopus.com."""
     return get_link(self._entry, 0, ["link"])
 def search_link(self):
     """URL to the API page listing documents of the author."""
     return get_link(self._json, 2)
 def self_link(self):
     """Link to the author's API page."""
     return get_link(self._json, 0)
예제 #9
0
 def search_link(self):
     """URL to the API page listing documents of the affiliation."""
     return get_link(self._json, 1)
 def scopus_author_link(self):
     """Link to the Scopus web view of the author."""
     return get_link(self._json, 1)
예제 #11
0
 def self_link(self):
     """Link to the affiliation's API page."""
     return get_link(self._json, 0)
예제 #12
0
 def scopus_affiliation_link(self):
     """Link to the Scopus web view of the affiliation."""
     return get_link(self._json, 2)
예제 #13
0
 def coauthor_link(self) -> Optional[str]:
     """URL to Scopus API search page for coauthors."""
     return get_link(self._json, 3)
예제 #14
0
 def self_link(self) -> Optional[str]:
     """Link to the author's API page."""
     return get_link(self._json, 0)
예제 #15
0
 def scopus_author_link(self) -> Optional[str]:
     """Link to the Scopus web view of the author."""
     return get_link(self._json, 1)