caption=random_file
glob.glob(f"test/*.{ext}")
import time
import glob, os, random
from variables import *
import telebot
from telebot import types
bot = telebot.TeleBot(TOKEN)
content_types = ["text"]
@bot.message_handler(commands=['start'])
def start_handler(message):
keyboard = types.InlineKeyboardMarkup(row_width=3)
url_button = types.InlineKeyboardButton(text="TEXT", url="https://t.me")
url_buttons = types.InlineKeyboardButton(text="TEXT", url="https://t.me")
url_buttons1 = types.InlineKeyboardButton(text="TEXT", url="https://t.me")
keyboard.add(url_button)
keyboard.add(url_buttons)
keyboard.add(url_buttons1)
bot.send_message(message.chat.id, f'Привет, {message.from_user.first_name}!')
bot.send_message(message.chat.id, "ТЕКСТ!", reply_markup=keyboard)
@bot.message_handler(commands=['photo'])
def photo_handler(message):
keyboard = types.InlineKeyboardMarkup(row_width=1)
data_buttons1 = types.InlineKeyboardButton(text="Получить!", callback_data="requestphoto1")
keyboard.add(data_buttons1)
bot.send_message(message.chat.id, "Кнопка для получения фото:", reply_markup=keyboard)
@bot.callback_query_handler(func=lambda call: call.data=="requestphoto1")
def test_callback(call):
files = []
for ext in ["png", "jpg", "jpeg"]:
[files.append(file) for file in glob.glob(f"*.{ext}")]
random_file = files[random.randint(0, len(files)-1)]
with open(random_file, 'rb') as f:
bot.send_media_group(call.message.chat.id, [types.InputMediaPhoto(f, caption=random_file)])
bot.answer_callback_query(callback_query_id=call.id, text="Отправлено!")
@bot.message_handler(content_types=['text'])
def txt(message):
for i in range(0, len(bad_words)):
if bad_words[i] in message.text.lower():
try:
bot.delete_message(message.chat.id, message.message_id, )
print(message.text + " delited")
except OSError:
print("BadWordsError - Sending again after 3 seconds!!!")
time.sleep(3)
bot.delete_message(message.chat.id, message.message_id)
print(message.text + " delited")
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)