Spaces:
Sleeping
Sleeping
File size: 1,510 Bytes
582bf6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
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
|