Balethon

Balethon

Balethon

A library for creating bots in the Bale messenger

Quick Example

from balethon import Client

bot = Client("TOKEN")


@bot.on_message()
async def greet(message):
    await message.reply("Hello")


bot.run()

You must replace TOKEN with the token which BotFather gives you in the Bale messenger

Key Features

Installing

pip install Balethon