Readding Files

This commit is contained in:
kiyreload27
2025-12-28 17:11:39 +00:00
parent 72dfc34893
commit 4b944c1a53
1045 changed files with 4793 additions and 0 deletions

20
check_paths.py Normal file
View File

@@ -0,0 +1,20 @@
import sqlite3
import os
DB_PATH = r"y:\Keith\umamusuma card application\database\umamusume.db"
print(f"Checking DB at: {DB_PATH}")
try:
conn = sqlite3.connect(DB_PATH)
cur = conn.cursor()
cur.execute("SELECT card_id, name, image_path FROM support_cards LIMIT 5")
rows = cur.fetchall()
print("\nSample Card Data:")
for row in rows:
print(f"ID: {row[0]}, Name: {row[1]}, Path: {row[2]}")
conn.close()
except Exception as e:
print(f"Error: {e}")