object is not subscriptable
при таком коде.
async def buy(id, number, user_id):
conn = sqlite3.connect('base.db')
cursor = conn.cursor()
cursor.execute(f'SELECT * FROM users WHERE user_id = "{user_id}"')
row = cursor.fetchone()
async with aiohttp.ClientSession() as session:
response = await session.post("ссылка"}).json()
for i in response:
if int(id) == int(i['service']):
if int(number) >= int(i['min']) and int(number) <= int(i['max']):
rate = float(i['rate']) / 1000 * int(number)
sale = rate + rate / 100 * int(config.config('percent'))
if float(sale) <= int(row[1]):
msg = 'Введите ссылку,куда нужно накрутить'
return msg, True
else:
msg = 'У вас недостаточно средств'
return msg, False
await session.close()
Что делать?
!paste
/paste
Обсуждают сегодня