Metadata-Version: 1.2
Name: ubot
Version: 4.5.1
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
Description: ########
        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
        
Platform: UNKNOWN
Requires-Python: >=3.6
