Metadata-Version: 1.1
Name: botogram-beta
Version: 0.7b3
Summary: A Python framework for Telegram bots
Home-page: https://botogram.dev
Author: The botogram authors
Author-email: UNKNOWN
License: MIT
Description: 
        ========
        botogram
        ========
        
        botogram is a Python framework, which allows you to focus just on
        creating your `Telegram bots`_, without worrying about the underlying
        Bots API.
        
        While most of the libraries for Telegram out there just wrap the Bots
        API, botogram focuses heavily on the development experience, aiming to
        provide you the best API possible. Most of the Telegram implementation
        details are managed by botogram, so you can just focus on your bot.
        
        ::
        
            import botogram
            bot = botogram.create("API-KEY")
        
            @bot.command("hello")
            def hello_command(chat, message, args):
                """Say hello to the world!"""
                chat.send("Hello world")
        
            if __name__ == "__main__":
                bot.run()
        
        Want to get started? `Go to the documentation`_
        
        .. _Telegram bots: https://core.telegram.org/bots
        .. _Go to the documentation: https://botogram.dev/docs
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
