Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

aiobale

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiobale

Modern async client for Bale.

pipPyPI
Version
0.1.5
Maintainers
1

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.

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

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts