Skip to content

balepy/balepy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

balepy

background

balepy a Library Python for create bot API in bale application

Install and Update:

pip install -U balepy

START:

from balepy import Client
from asyncio import run


__token = 'your-token-here'
client = Client(__token, timeout=10)

async def main():
    async for message in client.on_message():
        await message.reply('hello __from__ **balepy**')


if __name__ == '__main__':
    run(main())

Contributors

Thanks to all those who contributed directly or indirectly to the development of the module