Metadata-Version: 1.0
Name: FullContact.py
Version: 0.0.1
Summary: Simple Python interface for FullContact, using Requests
Home-page: https://github.com/garbados/fullcontact.py
Author: Max Thayer
Author-email: garbados@gmail.com
License: MIT
Description: # FullContact.py
        
        A simple Python interface for [FullContact](http://www.fullcontact.com/), using Requests.
        
        # Install
        
        In terminal:
        
            pip install git+https://github.com/garbados/fullcontact.py.git
        
        # Usage
        
        In your Python script:
        
            from fullcontact import FullContact
        
            fc = FullContact('your_api_key')
            person_profile = fc.get(email='you@email.com')
        
        # FullContact API Documentation
        
        Check out FullContact's documentation [here](http://www.fullcontact.com/developer/docs/).
        
        # Tests
        
        To run the test suite, go to whatever directory the project is in, and:
        
            python setup.py test
        
        You'll be prompted for an API key. Enter a valid one, and all the tests will (as of this writing) pass.
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
