This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues/pull-requests.
uniborg/test.py

14 lines
199 B
Python

from uniborg import Uniborg
from telethon import events
borg = Uniborg("uniborg")
print(borg.uid)
print(dir(borg))
@borg.on(events.NewMessage)
async def asdf(e):
print(e.raw_text)
borg.run()