("EBSCO-PY", not "EBS-COPY")
The official Python wrapper for the EBSCO Discovery Service API.
from ebscopy import edsapi
session = edsapi.Session(user_id="user", password="pass", profile="profile", org="org", guest="n")
results = session.search("blue")
print("Total Hits: %s" % results.stat_total_hits)
results.pprint()
session.end()
- More examples: USAGE.md
Complete module documentation
pip install ebscopy
- More info: INSTALL.md
- PYPI Page
- I use four-space tabs. Sorry if that offends anyone.
- EBSCO Information Services
- Dave Edwards - for hiring me
- Ron Burns - for letting Dave hire me
- Eric Frierson - for showing me how the API works
- Nitin Arora - for making the case for a Python EDS API wrapper and writing the original PyEDS