dark mode + reorganization

This commit is contained in:
Shiro-Nek0
2026-02-26 02:29:23 -03:00
parent 2701dfbf85
commit 70c14acaa5
184 changed files with 177 additions and 50 deletions

View File

@@ -11,9 +11,9 @@ from io import BytesIO
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
# --- CONFIGURATION ---
JSON_FILE = 'frutas.json'
OUTPUT_DIR = 'keychain_cards'
IMG_CACHE_DIR = 'image_cache'
JSON_FILE = os.getcwd() + 'frutas.json'
OUTPUT_DIR = os.getcwd() + 'keychain_cards'
IMG_CACHE_DIR = os.getcwd() + 'image_cache'
os.makedirs(OUTPUT_DIR, exist_ok=True)
os.makedirs(IMG_CACHE_DIR, exist_ok=True)
@@ -113,4 +113,4 @@ if __name__ == "__main__":
print(f"Processing {len(data)} cards...")
for entry in data:
generate_card(entry)
print("\nAll done. Try not to lose your keys.")
print("\nAll done. Try not to lose your keys.")