Skip to content

headbot/headbot-python

Repository files navigation

Headbot.io Python Client

Build Status PyPi Version PyPi Supported Versions

Python client for the headbot.io API.

Installing

pip install headbot

Supported versions

  • Python 3.6+

Usage

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())

About

Python client for the headbot.io API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages