Metadata-Version: 1.1
Name: inquisitor
Version: 0.1.3
Summary: A python wrapper around the API of Inquirim.com
Home-page: https://github.com/inquirimdotcom/inquisitor
Author: Oriol Andres
Author-email: oriol@inquirim.com
License: MIT License
Download-URL: https://github.com/inquirimdotcom/inquisitor/tarball/1.0b1
Description: Inquisitor
        ==========
        
        | This Python module provides a python wrapper around the API of Inquirim.com.
        | This API accepts requests provided an authentication token is supplied. To obtain an authentication token, users must register at inquirim.com.
        
        Installation
        ------------
        
        Just type:
        
        .. code:: bash
        
            pip install inquisitor
        
        You can also find `Inquisitor on Github
        <https://github.com/inquirimdotcom/inquisitor/>`_
        
        Usage example
        -------------
        
        .. code:: python
        
            import inquisitor
            api = inquisitor.Inquisitor("YOUR_API_KEY")
            sources = api.sources(page=1)
        
            for source in sources:
                print source.description
Keywords: data,economics,finance,api
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
