Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 513 Bytes

examples.md

File metadata and controls

23 lines (18 loc) · 513 Bytes

Example Command

from userge import userge, Message

@userge.on_cmd("test", about="help text to this command")
async def test_cmd(message: Message):
   # some other stuff
   await message.edit("testing...")
   # some other stuff

Example Filter

from userge import userge, Message, filters

@userge.on_filters(filters.me & filters.private)
async def test_filter(message: Message):
   # some other stuff
   await message.reply(f"you typed - {message.text}")
   # some other stuff