тст
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pavel_Duron 2022-11-07 19:58:59 +10:00
parent 171cdfc5fe
commit 1069a20093
2 changed files with 9 additions and 6 deletions

5
bot.py
View File

@ -5,6 +5,7 @@ from random import randint
from aiogram import Bot, Dispatcher, executor, types
from aiogram.types import ReplyKeyboardRemove, ReplyKeyboardMarkup, KeyboardButton
import sql
@ -48,8 +49,10 @@ async def dick(message: types.Message):
async def ident(message: types.Message):
id1 = message.from_user.id
fullname1 = message.from_user.full_name
#await sql.add_user()
sql.db_start
await bot.send_message(message.chat.id, f'{id1} + {fullname1}')
sql.add_user
sql.close
#await sql.db.close()

10
sql.py
View File

@ -1,5 +1,5 @@
import sqlite3 as sq
import aiogram
async def db_start(): #подключение к бд
global db, cur
@ -10,12 +10,12 @@ async def db_start(): #подключение к бд
cur.execute(''''CREATE TABLE IF NOT EXISTS users(id INTEGER PRIMARY KEY, users_id INTEGER, user_name TEXT, dick_size INTEGER)''')
db.commit()
async def add_user(id):
cur.execute('''INSERT INTO users (users_id, user_name) VALUES (?)''',[id, fullname])
async def add_user():
cur.execute('''INSERT INTO users (users_id, user_name) VALUES (?)''',[id1, fullname1])
db.commit()
db.commit()
async def close():
db.close()