https://github.com/delosreyesjohnpaul/multiple-choice-question-generator
This repository contains a Flask-based application for generating multiple-choice questions. The application allows users to upload text or manually input questions, and it automatically generates multiple-choice questions based on the provided content.
https://github.com/delosreyesjohnpaul/multiple-choice-question-generator
flask python
Last synced: 5 months ago
JSON representation
This repository contains a Flask-based application for generating multiple-choice questions. The application allows users to upload text or manually input questions, and it automatically generates multiple-choice questions based on the provided content.
- Host: GitHub
- URL: https://github.com/delosreyesjohnpaul/multiple-choice-question-generator
- Owner: delosreyesjohnpaul
- Created: 2024-09-13T09:16:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-05T15:28:46.000Z (over 1 year ago)
- Last Synced: 2025-06-15T22:39:18.016Z (about 1 year ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 66 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Multiple-Choice Question Generator
This repository contains a Flask-based application for generating multiple-choice questions. The application allows users to upload text or manually input questions, and it automatically generates multiple-choice questions based on the provided content.
## Features
- **Upload Text or Type Questions**: Easily upload a text file or manually type in questions.
- **Automatic Question Generation**: The application uses natural language processing to generate multiple-choice questions automatically.
- **Flask-based Web Interface**: A user-friendly web interface built with Flask.
- **Customizable Options**: Customize the number of choices, difficulty level, and other parameters.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/delosreyesjohnpaul/Multiple-Choice-Question-Generator.git
cd Multiple-Choice-Question-Generator
```
2. Create a virtual environment and activate it:
```bash
python3 -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
```
3. Install the required packages:
```bash
pip install -r requirements.txt
```
4. Run the Flask application:
```bash
flask run
```
## Usage
1. Open your web browser and navigate to `http://127.0.0.1:5000`.
2. Upload a text file containing your content or manually type in your questions.
3. Configure the question generation settings as needed.
4. Generate and review your multiple-choice questions.