The scientific-emacs a container-based in Debian:Focal version with emacs 26, and a light version of TeXlive.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
491 B

  1. from scholarly import scholarly
  2. # Retrieve the author's data, fill-in, and print
  3. search_query = scholarly.search_author('Steven A Cholewiak')
  4. author = next(search_query).fill()
  5. print(author)
  6. # Print the titles of the author's publications
  7. print([pub.bib['title'] for pub in author.publications])
  8. # Take a closer look at the first publication
  9. pub = author.publications[0].fill()
  10. print(pub)
  11. # Which papers cited that publication?
  12. print([citation.bib['title'] for citation in pub.citedby])