{"id":15323991,"url":"https://github.com/ks-avinash/python-django-polls-app","last_synced_at":"2025-03-21T12:28:04.593Z","repository":{"id":20686468,"uuid":"23969649","full_name":"ks-avinash/Python-Django-Polls-App","owner":"ks-avinash","description":"Creation of a basic poll application","archived":false,"fork":false,"pushed_at":"2014-09-12T19:27:24.000Z","size":304,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-26T08:41:39.700Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ks-avinash.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-12T17:16:39.000Z","updated_at":"2014-09-12T19:15:07.000Z","dependencies_parsed_at":"2022-08-19T20:10:31.927Z","dependency_job_id":null,"html_url":"https://github.com/ks-avinash/Python-Django-Polls-App","commit_stats":null,"previous_names":["ks-avinash/python-django-polls-app"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ks-avinash%2FPython-Django-Polls-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ks-avinash%2FPython-Django-Polls-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ks-avinash%2FPython-Django-Polls-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ks-avinash%2FPython-Django-Polls-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ks-avinash","download_url":"https://codeload.github.com/ks-avinash/Python-Django-Polls-App/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244797984,"owners_count":20511971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T09:24:04.504Z","updated_at":"2025-03-21T12:28:04.568Z","avatar_url":"https://github.com/ks-avinash.png","language":"Python","readme":"Python-Django-Polls-App\n=======================\n\u003cp align=\"justify\"\u003eDjango is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.\nDeveloped 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. \u003c/p\u003e\n\n\u003ch3\u003eCreation of a basic poll application\u003c/h3\u003e\n\nIt’ll consist of two parts:\n\n\u003col\u003e\n  \u003cli\u003eA public site that lets people view polls and vote in them.\u003c/li\u003e\n  \u003cli\u003eAn admin site that lets you add, change and delete polls.\u003c/li\u003e\n\u003c/ol\u003e\n\n\n\u003cstrong\u003eRequirements\u003c/strong\u003e\n\n\u003cul\u003e\n\u003cli\u003eInstall \u003ca href=\"https://www.python.org/downloads/\"\u003e Python\u003c/a\u003e(the right version)\u003c/li\u003e\n\u003cli\u003eInstall the\u003ca href=\"https://pip.pypa.io/en/latest/installing.html#install-pip\"\u003e pip\u003c/a\u003e package manager\u003c/li\u003e\n\u003cli\u003eInstall \u003ca href=\"https://virtualenv.pypa.io/en/latest/virtualenv.html#installation\"\u003e virtualenv\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eInstall \u003ca href=\"https://www.djangoproject.com/download/\"\u003eDjango\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\n\n\n  \u003ch3\u003eImportant Commands\u003c/h3\u003e\n\u003col\u003e\n    \u003cli\u003edjango-admin.py startproject projectname\u003c/li\u003e\n    \u003cli\u003epython manage.py runserver\u003c/li\u003e\n    \u003cli\u003edjango-admin.py startapp\u003c/li\u003e \n    \u003cli\u003epython manage.py syncdb\u003c/li\u003e\n    \u003cli\u003epython manage.py sqlmigrate polls 0001\u003c/li\u003e\n    \u003cli\u003epython manage.py shell\u003c/li\u003e\n    \u003cli\u003epython manage.py migrate\u003c/li\u003e\n    \u003cli\u003epython manage.py makemigration\u003c/li\u003e\n    \u003cli\u003epython manage.py runserver 8080\u003c/li\u003e\n    \n\u003c/ol\u003e\n\n\u003ch3\u003eBest Tutorials\u003c/h3\u003e\n\u003cul style=\"list-style-type:disc\"\u003e\n \u003cli\u003eWriting your first Django\u003ca href=\"https://docs.djangoproject.com/en/1.7/intro/tutorial01/\"\u003e App\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eGetting Start with\u003ca href=\"http://www.creativebloq.com/netmag/get-started-django-7132932\"\u003e Django\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e  \n\n\u003ch3\u003eVideo Tutorials\u003c/h3\u003e\n\u003cul style=\"list-style-type:circle\"\u003e\n \u003cli\u003ePython\u003ca href=\"https://www.youtube.com/playlist?list=PLxxA5z-8B2xk4szCgFmgonNcCboyNneMD\"\u003e Django\u003c/a\u003e\u003c/li\u003e\n \n\u003cli\u003e\u003ca href=\"http://pluralsight.com/training/courses/TableOfContents?courseName=django-fundamentals\u0026highlight=reindertjan-ekker_django-fundamentals-m1-intro*1,3,0,2,5,4!reindertjan-ekker_django-fundamentals-m2-install*10,0,8,9,11,1,3,7,2,5,6,4!reindertjan-ekker_django-fundamentals-m3-starting*7,1,2,0,5,8,9,4,6,3!reindertjan-ekker_django-fundamentals-m5-userhome*4,5,0,9,13,15,7,8,10,14,1,2,3,6,12,11!reindertjan-ekker_django-fundamentals-m8-odds*5,6,0,4,7,8,1,2,3!reindertjan-ekker_django-fundamentals-m4-models*2,5,0,7,8,9,10,1,3,4,6!reindertjan-ekker_django-fundamentals-m6-forms*2,0,5,10,4,7,8,9,1,6,3!reindertjan-ekker_django-fundamentals-m7-moves*0,5,6,12,7,8,10,11,1,2,3,4,9#django-fundamentals-m1-intro\"\u003eDjango \u003c/a\u003eFundamentals\u003c/li\u003e\n\u003c/ul\u003e  \n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fks-avinash%2Fpython-django-polls-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fks-avinash%2Fpython-django-polls-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fks-avinash%2Fpython-django-polls-app/lists"}