Я сделал парсер, но не обновляется информация.
Помогите пожалуйста.
код:
import telebot
import requests
from bs4 import BeautifulSoup as b
URL = "
https://region15.ru/"
r = requests.get(URL)
soup = b(r.text, 'html.parser')
news = soup.find_all('div', class_='news-item')
clear_news = [c.text for c in news]
bot = telebot.TeleBot('мой токен') # Replace with your bot token
@bot.message_handler(commands=['start']) # Handle the '/start' command
def send_welcome(message):
bot.reply_to(message, 'Добро пожаловать, {}! \nЭто бот новостей Алании. \n команда на новости:/new_news'.format(message.from_user.first_name))
@bot.message_handler(commands=['new_news']) # Handle the '/start' command
def send_news(message):
bot.send_message(message.chat.id, clear_news[0])
bot.send_message(message.chat.id, clear_news[1])
bot.send_message(message.chat.id, clear_news[2])
bot.send_message(message.chat.id, clear_news[3])
bot.send_message(message.chat.id, clear_news[4])
bot.send_message(message.chat.id, clear_news[5])
bot.send_message(message.chat.id, clear_news[6])
bot.send_message(message.chat.id, clear_news[7])
bot.send_message(message.chat.id, clear_news[8])
bot.send_message(message.chat.id, clear_news[9])
bot.polling() # Start the bot