master #11

Merged
emmatveev merged 11 commits from master into prod 2024-11-30 15:16:16 +03:00
Showing only changes of commit f49413b7d7 - Show all commits

7
bot.py
View File

@ -11,6 +11,9 @@ class Core(TasksHandlerMixin):
return 'roulette_bot_worker'
def process(self, payload):
from telebot import TeleBot
bot = TeleBot()
bot.send_sticker()
message: Message = Message.de_json(json.dumps(payload))
self.message = message
self.chat_id = message.chat.id
@ -100,11 +103,11 @@ class Core(TasksHandlerMixin):
if self.message.photo:
self.send_message(None, chat_to_send, method='send_photo', photo=self.message.photo[-1].file_id)
if self.message.sticker:
self.send_message(None, chat_to_send, method='send_sticker', data=self.message.sticker.file_id)
self.send_message(None, chat_to_send, method='send_data', data=self.message.sticker.file_id, data_type='sticker')
if self.message.voice:
self.send_message(None, chat_to_send, method='send_voice', voice=self.message.voice.file_id)
if self.message.video_note:
self.send_message(None, chat_to_send, method='send_video_note', data=self.message.video_note.file_id)
self.send_message(None, chat_to_send, method='send_data', data=self.message.video_note.file_id, data_type='video_note')
if self.message.animation:
self.send_message(None, chat_to_send, method='send_animation', animation=self.message.animation.file_id)
self.send_message(self.message_text, chat_to_send)