Add files via upload

This commit is contained in:
S1S13AF7 2024-07-30 03:02:32 +03:00 committed by GitHub
parent c091aa3384
commit 4ac7882640
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

57
misc_beta_bot.py Normal file
View file

@ -0,0 +1,57 @@
# -*- coding: utf-8 -*-
from datetime import datetime, timedelta
from aiogram import Bot, types
from aiogram.dispatcher import Dispatcher
from aiogram.utils import executor
from config import TOKEN
bot = Bot(token=TOKEN)
dp = Dispatcher(bot)
print('Bot started')
@dp.message_handler(commands=['start'])
async def process_start_command(message: types.Message):
#print(message)
await message.answer(emoji="🖖")
@dp.message_handler(commands=['help'])
async def process_help_command(message: types.Message):
#print(message)
await message.answer(emoji="🤷")
@dp.message_handler(commands=['ping'])
async def process_ping_command(message: types.Message):
#print(message)
await message.reply("PONG!")
@dp.message_handler(commands=['кубик'])
async def cmd_dice(message: types.Message):
#print(message)
await message.answer_dice(emoji="🎲")
@dp.message_handler(commands=['coffee','кава','кофе','кофи','кофі'])
async def cmd_coffee(message: types.Message):
#print(message)
await message.answer("")
@dp.message_handler(commands=['tea','чай','чяй'])
async def cmd_tea(message: types.Message):
#print(message)
await message.answer("🍵")
@dp.message_handler(commands=['chats','чати','чаты','чаті'])
async def cmd_chats(message: types.Message):
#print(message)
await message.answer('''
@misc_chat
🦠 @misc_flood
🦠 @misc_games
🗃 @misc_files_v2
''')
if __name__ == '__main__':
executor.start_polling(dp)