Skip to content

Latest commit

 

History

History
63 lines (49 loc) · 1.9 KB

README.md

File metadata and controls

63 lines (49 loc) · 1.9 KB

pybalebot
Bale API Framework for Python
Homepage Documentation Releases News

PyBaleBot (ربات پیامرسان بله با پایتون)

Modern and fully asynchronous framework for Bale Bot API

Using Async

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.

Key Features

  • 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.

Installing

pip3 install -U pybalebot