Polls is a simple Django app to conduct Web-based polls. For each question, visitors can choose between a fixed number of answers.
It also contain django-polls directory which is packaged and can be installed via pip to use the polls on your project.
- Create Virtual environment
python -m venv envpip install -r requirements.txt
- Run the application
cd django-pollpython manage.py runserver
It also contain unit tests and customized admin panel, built while learning django from official docs.