An API that helps you to host quizes online
- Question can be of types - MCQ and open text
- Question can have a text + image
- User can see list of quizzes (both live and past and upcoming)
- User can attempt quizzes
Add id
of questions in the questions list.
Get the list of live quizes
Get the list of past quizes
Get the list of upcoming quiz
Get list of all the hosted quizes
Many more features
git clone https://github.com/nightwarriorftw/QuizApi.git
cd QuizApi
python3 -m venv virtual
source ./virtual/bin/activate
pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
├── accounts
│ ├── admin.py
│ ├── api
│ │ ├── serializers.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── apps.py
│ ├── __init__.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
├── db.sqlite3
├── manage.py
├── quiz
│ ├── asgi.py
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── quizapp
│ ├── admin.py
│ ├── api
│ │ ├── __init__.py
│ │ ├── serializers.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── apps.py
│ ├── __init__.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
├── README.md
└── requirements.txt
Credit goes to the Author :-
- Aman Verma
- Github @nightwarriorftw
- Twitter @nightwarriorftw