Просмотров: 1
Дата добавления: 28.02.23 в 15:26
import telebot
import requests
import json
bot= telebot.TeleBot('')
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.chat.id,"Hello, send any number, I'll tell you an interesting fact about it!")
@bot.message_handler(regexp='[0-9]+')
def start(message):
answer = requests.get(f'
numbersapi.com/{message.t... bot.send_message(message.chat.id,json.loads(answer.text)[' text'])
bot.polling()