Metadata-Version: 2.1
Name: headbot
Version: 0.2.0
Summary: python client for the headbot.io API
Home-page: https://github.com/headbot/headbot-python/
Author: Ruslan Ksalov
Author-email: rksalov@gmail.com
License: Apache 2
Description: # Headbot.io Python Client
        
        [![Build Status](https://travis-ci.org/headbot/headbot-python.svg?branch=master)](https://travis-ci.org/headbot/headbot-python)
        [![Build Status](https://img.shields.io/pypi/v/headbot.svg?color=blue)](https://pypi.org/project/headbot/)
        [![pypi supported versions](https://img.shields.io/pypi/pyversions/headbot.svg)](https://pypi.python.org/pypi/headbot)
        
        Python client for the [headbot.io API](http://headbot.io/api/).
        
        ## Installing
        ```
        pip install headbot
        ```
        
        ## Supported versions
        * Python 3.6+
        
        ## Usage
        ```python
        import asyncio
        from pprint import pprint
        from headbot.client import HeadbotAsyncClient
        
        
        async def main():
            async with HeadbotAsyncClient(
                    email="{email}",
                    password="{password}"
                    ) as client:
                my_crawlers = await client.crawlers()
                pprint(my_crawlers)
        
        
        if __name__ == '__main__':
            loop = asyncio.get_event_loop()
            loop = loop.run_until_complete(main())
        
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: AsyncIO
Requires-Python: >=3.6,<=3.9
Description-Content-Type: text/markdown
