Modern async client for Bale.
Project description
Aiobale — Async Bale API Client, Built on Reverse Engineering & Obsession
A clean, developer-friendly Python client for Bale Messenger’s internal API — reverse-engineered with care, curiosity, and persistence.
Documentation: https://docs.aiobale.ir
⚡ What is Aiobale?
Aiobale is an asynchronous Python library for accessing Bale’s internal gRPC API — built entirely from scratch, without .proto files or official documentation.
It transforms the raw complexity of Bale’s encrypted Protobuf-based network into simple, Pythonic classes and methods — ready for real-world use.
✨ Features
- 💬 Asynchronous, fast, and non-blocking — built on top of aiohttp
- 🔎 Works directly with Bale’s internal gRPC API
- 🔄 Supports phone login, messaging, bots, presence, files, and more
- 🧠 Clean, readable API with type hints and smart data classes
- ⚙️ Handler-based routing with decorators (inspired by modern bot frameworks)
- 🌙 Reverse-engineered from the web client, no official help
- 🛠 Built by one determined developer — with room to grow!
🎯 Use Cases: Build bots, track stats, explore Bale’s ecosystem, automate tasks, and more.
📦 Installation
pip install aiobale
Or get the latest development version from GitHub:
pip install git+https://github.com/Enalite/aiobale.git
⚠️ Please Read Carefully
Bale’s official client uses POST gRPC requests primarily for a few authentication methods.
Excessive use of such requests for non-authentication purposes (e.g., messaging, presence, media) may raise flags, result in rate limiting, or even lead to temporary bans.
Aiobale is provided as-is, without any guarantees or endorsement from Bale. It is intended strictly for educational and ethical use — please avoid any misuse, such as spam, scraping, or violating Bale’s terms of service.
🪄 Example: Echo Bot in 10 Lines
Here’s a minimal bot that replies with the same message (and echoes back documents too):
import asyncio
from aiobale import Client, Dispatcher
from aiobale.types import Message
dp = Dispatcher()
client = Client(dp)
@dp.message()
async def echo(msg: Message):
if content := msg.content.document:
return await msg.answer_document(content, use_own_content=True)
elif text := msg.text:
return await msg.answer(text)
await msg.answer("Nothing to echo!")
async def main():
await client.start()
asyncio.run(main())
Want more? Visit docs.aiobale.ir for comprehensive examples and advanced handler customization.
🌐 Documentation
📚 Full documentation available at: docs.aiobale.ir Covers everything from login and messaging to custom handlers, internals, and advanced usage.
🧑💻 Contributing
We’d love your help to improve and grow this project! Here’s how you can get involved:
- ⭐ Star the repo to show your support
- 🐞 Report bugs, request features, or ask questions via Issues
- 🧩 Submit pull requests — code, docs, tests, or even typo fixes
- 📣 Share Aiobale with other developers and reverse engineers
- ✍️ Help document unknown methods or Protobuf structures
Every contribution matters — even fixing a typo is a step forward.
👤 Author
Crafted with dedication by Alireza Jahani (@enalite) —
the result of countless hours spent decoding packets, chasing edge cases, and sipping coffee. ☕
📄 License
Aiobale is released under the MIT License. You’re free to use, modify, and contribute — just use it responsibly.
🔗 Links
- 📦 PyPI: pypi.org/project/aiobale
- 💻 GitHub: github.com/Enalite/aiobale
- 📢 Bale Channel: ble.ir/aiobale
- 💬 Telegram Mirror: t.me/aiobale
- 📘 Docs: docs.aiobale.ir
🤝 Final Words
Aiobale is more than just a library — it's a gateway to the inner workings of a unique messaging ecosystem. If you enjoy diving into internals, decoding protocols, and building tools that weren't supposed to exist — you're in the right place.
Let’s shape the future of unofficial Bale tooling — together.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiobale-0.1.3.tar.gz.
File metadata
- Download URL: aiobale-0.1.3.tar.gz
- Upload date:
- Size: 109.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4cfc35e6eece1bcb75284a4d22fd155fc8b607a122ac448afc68e218918ff17
|
|
| MD5 |
3e8ce5e0c66408441bc0f67283688c09
|
|
| BLAKE2b-256 |
8c0512b6de5ca06578cc749c8965c76aceedc3f7a65e593f823fbdca75e74395
|
File details
Details for the file aiobale-0.1.3-py3-none-any.whl.
File metadata
- Download URL: aiobale-0.1.3-py3-none-any.whl
- Upload date:
- Size: 203.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50508203555ab79230df14a8a12b5dc936aae6ecfb0840018ac994e19e2c1632
|
|
| MD5 |
646a12b644fd9558458b06dbb5667875
|
|
| BLAKE2b-256 |
b85b2abffca4fbbb857fbd2ded0f3d1c72f08aea45b511f18773344d955190c8
|