blob: 12dfa6c8e8264bdeda463e82ab6dcdfb97aa08d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
from aiogram import types as t
from shared.instances import dp
from utils import filters as f
async def сосалка(msg: t.Message):
text = msg.text or msg.caption
if text.startswith("/"):
return False
with open("samples.txt", "a+") as file:
file.write(text.lower().replace("§", "") + "§")
return False
@dp.message_handler(
f.message.is_chat, f.message.has_text, сосалка, content_types=[t.ContentType.ANY]
)
async def ХУЙ():
pass
|