("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()
pip install ebscopy