Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ks-avinash/python-django-polls-app

Creation of a basic poll application
https://github.com/ks-avinash/python-django-polls-app

Last synced: 28 days ago
JSON representation

Creation of a basic poll application

Awesome Lists containing this project

README

        

Python-Django-Polls-App
=======================

Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
Developed by a fast-moving online-news operation, Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly.

Creation of a basic poll application

It’ll consist of two parts:


  1. A public site that lets people view polls and vote in them.

  2. An admin site that lets you add, change and delete polls.

Requirements

Important Commands



  1. django-admin.py startproject projectname

  2. python manage.py runserver

  3. django-admin.py startapp

  4. python manage.py syncdb

  5. python manage.py sqlmigrate polls 0001

  6. python manage.py shell

  7. python manage.py migrate

  8. python manage.py makemigration

  9. python manage.py runserver 8080


Best Tutorials



  • Writing your first Django App

  • Getting Start with Django

Video Tutorials