Metadata-Version: 2.4
Name: parsbale
Version: 1.1.0
Author-email: abasjy <raiagpt3@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/abasjy
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

PARSBALE
This library is built by ABAS.
Installation
To install the PARSBALE library, use the following command:
pip install parsbale

Getting the Token
Obtain your bot token from BotFather on the Bale messaging platform.
Example Code



from parsbale import Bot

token = 'token bale bot'  # Replace with your bot token
bot = Bot(token)

@bot.on_message()
async def start_handler(message):
    if message.text == "/start":
        await message.reply("Hello! Welcome to the bot :)")

bot.run()

