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.4.tar.gz (114.9 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.4-py3-none-any.whl (214.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: aiobale-0.1.4.tar.gz
  • Upload date:
  • Size: 114.9 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.4.tar.gz
Algorithm Hash digest
SHA256 c180e0bb2ce05a8010cbdbfdb2a6fc7342345ef82497f35afcd9538c861e11cc
MD5 861d2aff49e65ac1ef774bf1453440d1
BLAKE2b-256 2f232d5360db5b959311ff07b4cc16b7e45537d3e8a7e52ab3c1c6e19eae96ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiobale-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 214.8 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 c5f894f19e2a528b7af896b344bed18839808cab8fda9e0ffb98cb28e33dbc2c
MD5 8a00fbc66bb2284f513ac6d3514d46aa
BLAKE2b-256 59810b421e81ce486c077f5718c7a6499587b3ef222a328c2663d00ebf2cafe4

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