import json
from telebot import TeleBot, types
from telegram import InlineQueryResultArticle, InputTextMessageContent
from telegram.ext import Updater, InlineQueryHandler, CallbackContext
import csv
import random
try:
with open('saved_data.json', 'r') as file:
cells = json.load(file)
except FileNotFoundError:
cells = {}
# Список чатов, в которые нужно отправить сообщение
chat_ids = ['from_one_to_hundred', 'chat_id2', 'chat_id3']
# Токен вашего бота
TOKEN = '7369693286:##HNNuncrnh3_gFTANlO4KjADcqXAgjsTSU'
# Создание экземпляра бота
bot = TeleBot(TOKEN)
@bot.message_handler(commands=['salt'])
def start(message):
cell_id = bot.user.id
markup = types.InlineKeyboardMarkup()
vip = random.randint(4, 11)
bot.send_message(message.chat.id, 'Привет! я бот от создателя Nks123.', reply_markup=markup)
with open('saved_data.json', 'w') as file:
json.dump(cells, file)
bot.infinity_polling()
Это код
Не обращайте внимание на подписи, они были написаны по фану на моём языке
Ошибка в прикреплённом файле
from telebot import TeleBot, types
from telegram import InlineQueryResultArticle, InputTextMessageContent
from telegram.ext import Updater, InlineQueryHandler, CallbackContext
import csv
import random
try:
with open('saved_data.json', 'r') as file:
cells = json.load(file)
except FileNotFoundError:
cells = {}
# Список чатов, в которые нужно отправить сообщение
chat_ids = ['from_one_to_hundred', 'chat_id2', 'chat_id3']
# Токен вашего бота
TOKEN = '7369693286:##HNNuncrnh3_gFTANlO4KjADcqXAgjsTSU'
# Создание экземпляра бота
bot = TeleBot(TOKEN)
@bot.message_handler(commands=['salt'])
def start(message):
cell_id = bot.user.id
markup = types.InlineKeyboardMarkup()
vip = random.randint(4, 11)
bot.send_message(message.chat.id, 'Привет! я бот от создателя Nks123.', reply_markup=markup)
with open('saved_data.json', 'w') as file:
json.dump(cells, file)
bot.infinity_polling()
Это код
Не обращайте внимание на подписи, они были написаны по фану на моём языке
Ошибка в прикреплённом файле