Skip to content

A library for bot development in Telegram messengers

License

Notifications You must be signed in to change notification settings

neilsohn9/pythio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pythio

A library for bot development in Telegram messengers

Example

from pythio import Client
import asyncio


client = Client('YOUR_TOKEN_HERE')

async def main():
    async for message in client.on_message():
        print(message.text)
        await message.reply('Hello World!')


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

Documents

About

A library for bot development in Telegram messengers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages