ssilverm / ebscopy

The official Python wrapper for the EBSCO Discovery Service API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ebscopy

(/ˈɛbskoʊˌpaɪ/, not /ˈɛbskɒpiː/)

The official Python wrapper for the EBSCO Discovery Service API.

Usage

import ebscopy

session = ebscopy.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

About

The official Python wrapper for the EBSCO Discovery Service API

License:GNU General Public License v3.0


Languages

Language:Python 100.0%