Metadata-Version: 2.0
Name: ubot
Version: 4.4.2
Summary: Basic, easily extendable, Telegram bot class
Home-page: https://github.com/strychnide/ubot
Author: Alessandro Cerruti
Author-email: thereap3r97@gmail.com
License: MIT
Description-Content-Type: text/x-rst
Platform: UNKNOWN
Requires-Python: >=3.6
Provides-Extra: dev
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: flake8-sorted-keys; extra == 'dev'
Requires-Dist: flake8-import-order; extra == 'dev'
Requires-Dist: flake8-quotes; extra == 'dev'
Requires-Dist: flake8-bugbear; extra == 'dev'
Requires-Dist: coverage; extra == 'dev'
Requires-Dist: twine; extra == 'dev'

########
Microbot
########

A *very* minimal class that implements the basic Telegram bot functionalities. Can (should) be extended depending on needs.

Quickstart
==========

.. code-block:: python

    import asyncio
    loop = asyncio.new_event_loop()
    bot = Bot('token')
    loop.run_until_complete(asyncio.gather[
         bot.start(),
         # other tasks
         loop=loop
     ])

Resources
=========
- Docs: https://strychnide.github.io/ubot/

**TODO:** documentation, unit tests, support sticker, inline mode, passport, payments, games


