2022-11-01 18:52:08 +10:00
|
|
|
|
from cgitb import text
|
2022-11-03 01:01:08 +10:00
|
|
|
|
import datetime
|
2022-10-18 19:17:36 +10:00
|
|
|
|
import logging
|
2022-11-04 19:05:33 +10:00
|
|
|
|
from random import randint
|
2022-11-09 22:52:44 +10:00
|
|
|
|
from sqdb import tert
|
2022-10-29 14:04:56 +10:00
|
|
|
|
|
2022-10-18 19:17:36 +10:00
|
|
|
|
from aiogram import Bot, Dispatcher, executor, types
|
2022-10-18 20:22:30 +10:00
|
|
|
|
from aiogram.types import ReplyKeyboardRemove, ReplyKeyboardMarkup, KeyboardButton
|
2022-11-08 20:43:34 +10:00
|
|
|
|
|
2022-11-07 17:11:33 +10:00
|
|
|
|
|
2022-11-07 00:52:46 +10:00
|
|
|
|
|
2022-11-07 17:09:24 +10:00
|
|
|
|
|
2022-10-18 19:17:36 +10:00
|
|
|
|
API_TOKEN = '5724991559:AAEuLvpLsgP6LHRGMSyFtQLlR5qPQUO4b_w'
|
|
|
|
|
|
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
|
|
|
|
|
|
bot = Bot(token=API_TOKEN)
|
|
|
|
|
dp = Dispatcher(bot)
|
2022-10-29 14:04:56 +10:00
|
|
|
|
|
2022-11-03 16:28:19 +10:00
|
|
|
|
|
2022-11-03 00:39:03 +10:00
|
|
|
|
|
2022-11-03 01:01:08 +10:00
|
|
|
|
@dp.message_handler(commands=["time"])
|
2022-11-03 00:39:03 +10:00
|
|
|
|
async def send_time(message: types.Message):
|
2022-11-03 19:20:54 +10:00
|
|
|
|
new_year = datetime.datetime(2022, 12, 31) #дата нового года
|
2022-11-03 19:07:20 +10:00
|
|
|
|
ct = datetime.datetime.now() #датавремя
|
2022-11-03 19:20:54 +10:00
|
|
|
|
cd = datetime.datetime.now().strftime("%d/%m/%Y") #дата (д,м,г)
|
2022-11-03 19:07:20 +10:00
|
|
|
|
ct1 = ct+datetime.timedelta(hours=14) # +14 часов от сервера
|
2022-11-03 19:20:54 +10:00
|
|
|
|
ct2 = ct1.strftime('%H:%M') # форматирует датувремя просто во время(ч,м)
|
|
|
|
|
raznitsa = (new_year - ct).days #отнимает от нг текущее время и получаем разницу в днях
|
2022-11-03 22:13:45 +10:00
|
|
|
|
|
|
|
|
|
days = ['день', 'дня', 'дней']
|
|
|
|
|
if raznitsa % 10 == 1 and raznitsa % 100 != 11:
|
|
|
|
|
p = 0
|
|
|
|
|
elif 2 <= raznitsa % 10 <= 4 and (raznitsa % 100 < 10 or raznitsa % 100 >= 20):
|
|
|
|
|
p = 1
|
|
|
|
|
else:
|
|
|
|
|
p = 2
|
|
|
|
|
num=(str(raznitsa) + ' ' + days[p])
|
|
|
|
|
|
|
|
|
|
await message.reply(f'Сегодня {cd} \nВремя: {ct2} \nДо Нового Года осталось {num}')
|
2022-11-04 19:05:33 +10:00
|
|
|
|
|
|
|
|
|
#####______________________ПИПИСА БОТ БУДЕТ ЗДЕСЬ__________________________________
|
2022-11-04 19:09:26 +10:00
|
|
|
|
|
|
|
|
|
@dp.message_handler(commands=["dick"])
|
|
|
|
|
async def dick(message: types.Message):
|
2022-11-04 19:16:43 +10:00
|
|
|
|
numb = (f"Рандомное число : {randint(-7,10)}")
|
2022-11-04 19:16:09 +10:00
|
|
|
|
await bot.send_message(message.chat.id, (numb))
|
2022-11-04 19:09:26 +10:00
|
|
|
|
|
2022-11-07 17:04:34 +10:00
|
|
|
|
@dp.message_handler(commands=["id"])
|
2022-11-07 17:10:21 +10:00
|
|
|
|
async def ident(message: types.Message):
|
2022-11-08 20:43:34 +10:00
|
|
|
|
|
2022-11-09 23:02:17 +10:00
|
|
|
|
await bot.send_message(message.chat.id, f'{message.from_user.id} + {message.from_user.full_name}')
|
|
|
|
|
lisq = user(user_id = message.from_user.id, user_fullname = message.from_user.full_name)
|
|
|
|
|
tert.adding()
|
2022-11-08 20:43:34 +10:00
|
|
|
|
|
2022-11-07 17:04:34 +10:00
|
|
|
|
|
2022-11-04 19:05:33 +10:00
|
|
|
|
|
|
|
|
|
|
2022-11-04 19:11:40 +10:00
|
|
|
|
#####______________________ПИПИСА БОТ БУДЕТ ЗДЕСЬ__________________________________
|
2022-11-03 01:01:08 +10:00
|
|
|
|
|
2022-11-03 00:39:03 +10:00
|
|
|
|
|
|
|
|
|
""""async def set_default_commands(dp):
|
2022-11-02 23:10:27 +10:00
|
|
|
|
await dp.bot.set_my_commands([
|
|
|
|
|
types.BotCommand("start", "Запустить бота"),
|
|
|
|
|
types.BotCommand("photo", "рандомная пикча"),
|
2022-11-03 00:39:03 +10:00
|
|
|
|
]) # отображает cписок команд но через бот фазер это проще"""
|
2022-11-02 23:10:27 +10:00
|
|
|
|
|
2022-10-29 14:04:56 +10:00
|
|
|
|
@dp.message_handler(commands=['start'])
|
2022-10-29 14:26:58 +10:00
|
|
|
|
async def start_func(message: types.Message):
|
2022-10-30 21:23:07 +10:00
|
|
|
|
# user_id = message.from_user.id
|
|
|
|
|
# user_full_name = message.from_user.full_name
|
|
|
|
|
# logging.INFO(f'{user_id=} {user_full_name=}', {time.asctime()})
|
2022-11-02 23:10:27 +10:00
|
|
|
|
await message.reply('похуй')
|
2022-10-30 20:49:19 +10:00
|
|
|
|
|
|
|
|
|
@dp.message_handler(commands=['photo'])
|
2022-10-30 21:17:21 +10:00
|
|
|
|
async def send_image(message: types.Message):
|
2022-11-02 23:10:27 +10:00
|
|
|
|
await bot.send_photo(message.chat.id, photo='https://memepedia.ru/wp-content/uploads/2018/08/ya-pidoras.jpg', reply_to_message_id=message.message_id)
|
2022-10-30 20:49:19 +10:00
|
|
|
|
|
2022-11-01 20:22:58 +10:00
|
|
|
|
@dp.message_handler(content_types=types.ContentTypes.TEXT)
|
2022-11-01 19:40:45 +10:00
|
|
|
|
async def send_faggot(message: types.Message):
|
2022-11-01 20:14:33 +10:00
|
|
|
|
print(message.text)
|
|
|
|
|
if message.text == 'хто я':
|
|
|
|
|
await bot.send_photo(message.chat.id, photo='https://www.meme-arsenal.com/memes/ecebd2339c7eab40e09874bd86a38a09.jpg')
|
2022-11-01 18:52:08 +10:00
|
|
|
|
|
2022-10-30 21:20:49 +10:00
|
|
|
|
#хуй
|
2022-10-29 14:04:56 +10:00
|
|
|
|
|
2022-10-18 19:17:36 +10:00
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
executor.start_polling(dp, skip_updates=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|