7

I have a long list of papers in a word file and I want to quickly retrieve how often each of them has been cited to get a quick (although of course somewhat rough) idea of which ones are the most influential. Is there a tool that allows to retrieve for a list of papers from e.g. Google Scholar the number of times each of them has been cited? I would prefer not to have to check manually for each paper on Google Scholar.

adipro
  • 8,488
  • 6
  • 44
  • 88
dreamer
  • 169
  • 1
  • 8
  • I doubt any tools that such a functionality given just a list of paper names. You could write a simple script to do this for you though. – Austin Henley Mar 15 '16 at 00:58
  • @AustinHenley Hmmh, I had hoped that some site like http://www.scopus.com/ would be able to do this. How would you write such a script in that case, because I know for instance that Scholar does not have an official API. I might ask on stackoverflow otherwise. – dreamer Mar 15 '16 at 09:38
  • Does your list include DOIs? If so, and you can parse these out, you can drop those into Scopus/WoS a hundred or so at a time. – Andrew is gone Mar 15 '16 at 17:36
  • @Andrew It doesn't unfortunately. – dreamer Mar 16 '16 at 11:19
  • You can also use R and scholar package. – Robert Jun 26 '19 at 12:52

1 Answers1

2

One solution to programmatically retrieve Google Scholar results is scholar.py (open source, BSD license), which is

a Python module that implements a querier and parser for Google Scholar's output. Its classes can be used independently, but it can also be invoked as a command-line tool.

Amongst other things, it can fetch the number of citations of an article.

Franck Dernoncourt
  • 33,669
  • 27
  • 144
  • 313