
As an individual you can register for a Scopus API key, and so I made a script which will take a selected reference in Bookends and search for that reference and (more importantly) the really useful Cited-By page. If your institution supports Scopus, then you can open these URLs directly.Otherwise you can still register for a free account and you get a limited version of the page.
I built this into my Alfred workflow, but it is a command-line script so you do not need Alfred to use it.
Code: Select all
> scopusSearch -h
ScopusSearch V1.0.6
=======================
Pass a DOI and apiKey and get the Scopus URLs back
-k, --key KEY API KEY?
-d, --doi DOI DOI to search for?
-s, --source database scopus (default) or scidir?
-a, --append [true]|false append URLS to Bookends note
-o, --open true|[false] open URLs in browser?
-h, --help Prints this help!
Code: Select all
> export scopusKey="XXXX"
Code: Select all
> scopusSearch -o true
SCOPUS URL: https://www.scopus.com/inward/record.uri?partnerID=HzOxMe3b&scp=64549116740&origin=inward
SCOPUS CITED: https://www.scopus.com/inward/citedby.uri?partnerID=HzOxMe3b&scp=64549116740&origin=inward
Will try to write to ID=53783
Finished appending to the notes of ID=53783
Will open Scopus Links in browser...
Save it and move it somewhere in your path, and make sure it is executable. You can run either directly from the terminal or using your preferred launch system like Quicksilver, Keyboard Maestro or Launchbar etc.