@bot.message_handler(content_types=["location"])
def text1 (message):
bot.send_message(message.chat.id, 'Вставьте фото этого места')
connect = sqlite3.connect("result.db")
cursor = connect.cursor()
cursor.execute("""CREATE TABLE IF NOT EXISTS login_id(
Имя INTEGER,
Фамилия INTEGER,
Локация INTEGER,
Фото INTEGER,
Название INTEGER
)""")
connect.commit()
user_iddd = [message.photo]
cursor.execute("INSERT INTO login_id (Фото) VALUES(?);",user_iddd)
connect.commit()
-
Вопрос задан
-
130 просмотров