Spaces:
Sleeping
Sleeping
| TriviaVerse/ | |
| β | |
| βββ app.py # Main Streamlit application | |
| βββ requirements.txt # Dependencies | |
| βββ README.md # Documentation | |
| βββ .gitignore # Git ignore file | |
| β | |
| βββ modules/ # Core modules | |
| β βββ __init__.py | |
| β βββ api_utils.py # API utilities | |
| β βββ mcq_generator.py # MCQ generation | |
| β βββ flashcard_generator.py # Flashcard generation | |
| β βββ fact_game.py # Fact game logic | |
| β βββ adaptive_engine.py # Adaptive difficulty | |
| β | |
| βββ utils/ # Utilities | |
| β βββ __init__.py | |
| β βββ score_tracker.py # Score tracking system | |
| β βββ user_auth.py # User authentication | |
| β βββ ui_components.py # UI components | |
| β βββ mobile_responsive.py # Mobile responsive helpers | |
| β | |
| βββ assets/ # Static assets | |
| β βββ style.css # Custom CSS | |
| β βββ logo.png # App logo | |
| β βββ images/ # Additional images | |
| β | |
| βββ config/ # Configuration | |
| β βββ __init__.py | |
| β βββ settings.py # App settings | |
| β βββ themes.py # UI themes | |
| β | |
| βββ data/ # Data storage | |
| βββ user_scores.json # Local score storage | |