Get the history of the number of citations an author has over the years.
- Python >= 3.6
requests
andbeautifulsoup4
Install using pip install -r requirements.txt
python histocit.py "Author Name"
Author name should be in quotes.
The citation_history
function takes an author name and returns a dict of year: ncit.
from histocit import citation_history
print(citation_history("Author Name"))