Metadata-Version: 1.0
Name: ebscopy
Version: 0.0.4.dev2
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
        
            connection = ebscopy.Connection(user_id="user", password="pass", profile="profile", org="org", guest="n")
            connection.connect()
            results = connection.search("blue")
        
            print "Search Results"
            print "---------------"
            results.pprint()
        
            print "Total Hits:"
            print results.stat_total_hits
        
            print "Available Facets:"
            print results.avail_facets_labels
        
            connection.disconnect()
        
        Installation
        ============
        
        -  See `INSTALL.md <docs/INSTALL.md>`__
        
        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>`__
        
        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
