Balethon
                                
                                
                                
                                    Balethon copied to clipboard
                            
                            
                            
                        A library for creating bots in the Bale messenger
  
Balethon
A library for creating bots in the Bale messenger
Quick Example
from balethon import Client
bot = Client("TOKEN")
@bot.on_message()
async def greet(message):
    await message.reply("Hello")
bot.run()
You must replace
TOKENwith the token which BotFather gives you in the Bale messenger
Key Features
- Easy: Concise and high level programming interface
 - Fast: Optimized and supports asynchronous programming
 - Documented: Learn Balethon in depth with the documentation
 - Community: Active and friendly community, you are sure to get answers to your questions
 - Design: Support for functional as well as object-oriented designs
 - powerful: Covers the Bale messenger's api and has useful tools to make your job easier
 - Flexible: Unable to get deprecated and ready for unexpected responses from the Bale messenger's api
 - Intuitive: Type-hinted and has great editor support
 - Extensible: All balethon's systems are easily extensible
 
Installing
pip install Balethon