QuizGenius is a web-based tool that utilizes Flask and spaCy to generate quiz questions based on educational content. The project is built with Python for the backend and HTML/JavaScript for the frontend.
Python (3.6 or higher) Flask (Install using: pip install Flask) spaCy (Install using: pip install spacy) spaCy English model (Download using: python -m spacy download en_core_web_sm)
Clone the Repository: git clone https://github.com/Hema-Arularasi/QuizGenius cd quizgenius
pip install Flask spacy python -m spacy download en_core_web_sm
python app.py
Open Project in Visual Studio Code:Install Python Extension: If not already installed, install the "Python" extension in Visual Studio Code. Set Up Virtual Environment (Optional): Create and activate a virtual environment: python -m venv venv source venv/bin/activate # On Linux/Mac venv\Scripts\activate # On Windows
Open app.py in Visual Studio Code and run it using the "Run Python File in Terminal" option.