import telebot
import wikipedia
token = '7169432779:AAFkLlQDq9tjFCtstPLYHDsMV0QWucwfE2Q'
bot = telebot.TeleBot(token)
def getwiki(s):
try:
ny =
wikipedia.page (s)
wikitext = ny.content[:1000]
wikimas = wikitext.split(".")
wikimas = wikimas[:-1] # Remove the last sentence (often incomplete)
wikitext2 = ""
for x in wikimas:
if "==" not in x:
if len(x.strip()) >= 3: # Exclude sentences shorter than 3 characters
wikitext2 += x + ". "
else:
pass # Do nothing if the sentence is too short
return wikitext2.strip() # Remove trailing space
Всё библиотеки подгружаны , токен привязан но всё равно он отвечает что такого нет.
Помогите где ошибка дам исходный код только помогите ???