File size: 378 Bytes
4223796
 
 
 
 
 
 
1
2
3
4
5
6
7
import sqlite3
conn = sqlite3.connect('E:/crowdata/backend/crowdata.db')
cursor = conn.cursor()
cursor.execute('SELECT email, is_verified, is_superuser, is_active FROM users WHERE email IN (?, ?)', ('admin@crowdata.ar', 'crowsistemas@proton.me'))
for row in cursor.fetchall():
    print(f'Email: {row[0]}, verified: {row[1]}, superuser: {row[2]}, active: {row[3]}')
conn.close()