Metadata-Version: 2.1
Name: headbot
Version: 0.1.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
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
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
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (==3.7.3)
Requires-Dist: async-timeout (==3.0.1)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: multidict (==5.1.0)
Requires-Dist: typing-extensions (==3.7.4.3)
Requires-Dist: yarl (==1.6.3)
Requires-Dist: aiodns (==2.0.0)
Requires-Dist: brotlipy (==0.7.0)
Requires-Dist: cchardet (==2.1.7)
Requires-Dist: cffi (==1.14.4)
Requires-Dist: pycares (==3.1.1)
Requires-Dist: pycparser (==2.20)

# Headbot.io Python Client

Python client for the [headbot.io API](http://headbot.io/api/).

## Installing
```
pip install headbot
```

## Supported versions
* Python 3.6+

## Usage
```
import asyncio
from pprint import pprint
from headbot.client import HeadbotClient


async def main():
    async with HeadbotClient(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())

```


