Currently Learning: *nothing*
Current Project: GeminiBot
- AetherManager - A Telegram chat manager bot, designed to provide chat cleanup and sequrity, while being quiet and fast
- MCSOTIS - One of my first "projects", intended to help you install and manage Minecraft servers on your phone via Termux easily
from life.me.mindset import favouritethings
favouritethings.add(name="programming", priority=727) # WYSI
from aethermanager import bot, events, logger
from database.servicelayer.service import addUserEntry
@bot.on(events.NewMessage(pattern="(?i).*hello*", func=lambda x: x.is_private))
async def hello(msg):
await msg.reply("Hi!")
addUserEntry(msg.sender.id)