Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import telebot # Імпортуємо потрібні бібліотеки
- from telebot import types
- import time
- bot = telebot.TeleBot('**********:********************************') # записуєм токен
- @bot.message_handler(content_types=['photo']) # хендлер що реагує на фото
- def starting(message):
- print(message) # виводимо отриманне повідомлення в консоль
- print("************************************************************")
- if message.caption != None:
- print(message.caption)
- @bot.message_handler(content_types=['text']) # хендлер що реагує на текст
- def starting(message):
- print(message) # виводимо отриманне повідомлення в консоль
- print("************************************************************")
- if __name__ == '__main__': # Блок запуску бота
- try:
- bot.polling(none_stop=True) # Запускаємо бота
- except OSError:
- print("PollingError - Sending again after 5 seconds!!!") # виводимр помилку в конслоь
- time.sleep(5) # робимо паузу
- bot.polling(none_stop=True) # Запускаємо ботаа
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement