Metadata-Version: 1.0
Name: bingsearch
Version: 0.1
Summary: A simple python wrapper for the Azure Bing Search API.
Home-page: http://github.com/guitarparty/bingsearch
Author: Guitarparty.com
Author-email: oss@guitarparty.com
License: MIT
Description: Extremely thin python wrapper for Microsoft Azure Bing Search API.
        
        Usage
        =====
        
        Just remember to set the `API_KEY` as your own.
        
            >>> import bingsearch
            >>> bingsearch.API_KEY='Your-Api-Key-Here'
            >>> r = bingsearch.request("Python Software Foundation")
            >>> r.status_code
            200
            >>> r[0]['Description']
            u'Python Software Foundation Home Page. The mission of the Python Software Foundation is to promote, protect, and advance the Python programming language, and to ...'
            >>> r[0]['Url']
            u'http://www.python.org/psf/
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
