Skip to main content

Modern async client for Bale.

Project description

Aiobale Banner

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


🤝 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

aiobale-0.1.2.tar.gz (104.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiobale-0.1.2-py3-none-any.whl (197.3 kB view details)

Uploaded Python 3

File details

Details for the file aiobale-0.1.2.tar.gz.

File metadata

  • Download URL: aiobale-0.1.2.tar.gz
  • Upload date:
  • Size: 104.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.6

File hashes

Hashes for aiobale-0.1.2.tar.gz
Algorithm Hash digest
SHA256 bd52df0175cc1ca0bf53a48305c1d6c3609ce42272368891f6a2f6b881d29dec
MD5 faa8ec4db144512f348655bcf94640f5
BLAKE2b-256 17e6cd84cda92e8554bc953821be03725f341195b7725695ff37664a943110b5

See more details on using hashes here.

File details

Details for the file aiobale-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: aiobale-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 197.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.6

File hashes

Hashes for aiobale-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1c02dd166e56a7a65b0f98685cbec2b5b2d1f5547f80f673baa7f0154d6641e0
MD5 dddb13cbfdf567cae96ef461184a1e75
BLAKE2b-256 fb7e36284c0da4e2533a3e8e54538ccc878a71120d3613221a0332a7facc6dd0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page