Bale API Framework for Python
Homepage
•
Documentation
•
Releases
•
News
Modern and fully asynchronous framework for Bale Bot API
from pybalebot import Client, filters
from pybalebot.types import Message
bot_token = "123456789:**********************"
app = Client("my_bot", bot_token=bot_token)
@app.on_message(filters.text)
async def hello(client, message: Message):
await message.reply("Hello from PyBaleBot!")
app.run()
PyBaleBot is a modern, elegant and asynchronous framework. It enables you to easily interact with the main Bale API through a user account (custom client) or a bot identity (bot API alternative) using Python.
- Ready: Install PyBaleBot with pip and start building your applications right away.
- Easy: Makes the Bale API simple and intuitive, while still allowing advanced usages.
- Elegant: Low-level details are abstracted and re-presented in a more convenient way.
- Fast: Boosted up by aiohttp, a high-performance http library written in C.
- Async: Fully asynchronous (also usable synchronously if wanted, for convenience).
- Powerful: Full access to Bale's API to execute any official client action and more.
pip3 install -U pybalebot