Ajout d'un système de suggestion via intégration gitlab + correction de /setgoodbye et DM arrivée

This commit is contained in:
Mathis 2026-02-08 14:42:40 +01:00
parent 50a1936b89
commit 997b897b28
20 changed files with 43667 additions and 204 deletions

18
check_db.py Normal file
View file

@ -0,0 +1,18 @@
import sqlite3
import os
db_path = "/home/gameurpro12/Documents/Mes_projets/Discord_bot/backup_kuby/config.db"
if os.path.exists(db_path):
conn = sqlite3.connect(db_path)
cursor = conn.cursor()
try:
cursor.execute("SELECT * FROM server_configs")
rows = cursor.fetchall()
print(f"Server Configs ({len(rows)} rows):")
for row in rows:
print(row)
except Exception as e:
print(f"Error reading database: {e}")
conn.close()
else:
print("Database not found")