@bot.message_handler(content_types=['text'])
def start_message(message):
chatld = message.chat.id
text = message.text.lower()
print(text)
if text == 'monday_1' :
m1 = open('photo01.jpg', 'rb')
bot.send_photo(chatld, m1)
if text == 'monday_2':
m2 = open('photo02.jpg', 'rb')
bot.send_photo(chatld, m2)
@bot.message_handler(content_types=['text'])
def start_message(message):
text = message.text.lower()
print(text)
if text == 'monday_1' :
m1 = open('photo01.jpg', 'rb')
bot.send_photo(message.chat.id, m1)
if text == 'monday_2':
m2 = open('photo02.jpg', 'rb')
bot.send_photo(message.chat.id, m2)