Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 858 Bytes

README.md

File metadata and controls

44 lines (30 loc) · 858 Bytes

Quiz App

Learning Python and attempting to create a Django-based quiz application where users can attempt a quiz, answer random multiple-choice questions, and see their results.

Features

  • Start a new quiz session
  • Random multiple-choice questions
  • Submit answers and get results
  • See the number of correct and incorrect answers

Installation

  1. Clone this repository:

    git clone https://github.com/Achyuth072/quiz-app.git
    cd quiz-app
  2. Create a virtual environment and activate it:

    python -m venv env
    .\env\Scripts\activate
  3. Install the required dependencies:

    pip install -r requirements.txt
  4. Run the development server:

    python manage.py runserver
  5. Access the quiz at:

    http://127.0.0.1:8000/quiz/start/