Metadata-Version: 1.1
Name: clearbit
Version: 0.0.1
Summary: Clearbit python bindings
Home-page: https://clearbit.com
Author: Clearbit
Author-email: support@clearbit.com
License: UNKNOWN
Description: # Clearbit
        
        A Python API client to [https://clearbit.com](https://clearbit.com).
        
        ## Usage
        
        First authorize requests by setting the API key found on your [account's settings page](https://clearbit.com/keys).
        
            import clearbit
        
            clearbit.key = 'mykey'
        
        You can also set the API key via the CLEARBIT_KEY environment variable.
        
        Then you can lookup people by email address:
        
            person = clearbit.Person.find(email='info@eribium.org',stream=True)
        
        If the person can't be found, then `None` will be returned.
        
        See the [documentation](https://clearbit.com/docs#person-api) for more information.
        
        ## Company lookup
        
        You can lookup company data by domain name:
        
            company = clearbit.Company(domain='uber.com',stream=True)
        
        If the company can't be found, then `None` will be returned.
        
        See the [documentation](https://clearbit.com/docs#company-api) for more information.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
