Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.18 KB

README.md

File metadata and controls

44 lines (32 loc) · 1.18 KB

ebscopy

("EBSCO-PY", not "EBS-COPY")

The official Python wrapper for the EBSCO Discovery Service API.

Usage

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()

Installation

pip install ebscopy

Links

Notes

  • I use four-space tabs. Sorry if that offends anyone.

Thanks

  • 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