Metadata-Version: 1.1
Name: ebscopy
Version: 0.1.16
Summary: Official Python wrapper for the EBSCO Discovery Service (EDS) API
Home-page: https://github.com/jessejensen/ebscopy
Author: Jesse Jensen
Author-email: jjensen@ebsco.com
License: GNUv3
Description: ebscopy
        =======
        
        (*/'ebskOu,pai/*, not */'ebskopi:/*)
        
        The official Python wrapper for the EBSCO Discovery Service API.
        
        Usage
        =====
        
        .. code:: python
        
            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()
        
        -  More examples: `USAGE.md <docs/USAGE.md>`__
        -  `[STRIKEOUT:Complete module
           documentation] <http://ebscopy.readthedocs.org/en/latest/>`__
        
        Installation
        ============
        
        .. code:: python
        
            pip install ebscopy
        
        -  More info: `INSTALL.md <docs/INSTALL.md>`__
        -  `PYPI Page <https://pypi.python.org/pypi/ebscopy>`__
        
        Links
        =====
        
        -  `EBSCO Discovery <https://www.ebscohost.com/discovery>`__
        -  `EDS API Console <http://eds-api.ebscohost.com/Console>`__
        -  `EDS API
           Wiki <http://edswiki.ebscohost.com/EBSCO_Discovery_Service_API_User_Guide>`__
        
        Notes
        =====
        
        -  I use four-space tabs. Sorry if that offends anyone.
        
        Thanks
        ======
        
        -  `EBSCO Information Services <https://www.ebsco.com/>`__
        -  *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
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
