Data Science & Developer Roadmaps with Chat & Free Learning Resources

Quick install guide

 Django documentation

Before you can use Django, you’ll need to get it installed. We have a complete installation guide that covers all the possibilities; this guide will guide you to a minimal installation that’ll work wh...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 1

 Django documentation

Let’s learn by example. Throughout this tutorial, we’ll walk you through the creation of a basic poll application. It’ll consist of two parts: A public site that lets people view polls and vote in the...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 2

 Django documentation

This tutorial begins where Tutorial 1 left off. We’ll set up the database, create your first model, and get a quick introduction to Django’s automatically-generated admin site. Where to get help: If y...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 3

 Django documentation

This tutorial begins where Tutorial 2 left off. We’re continuing the web-poll application and will focus on creating the public interface – “views.” Where to get help: If you’re having trouble going t...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 4

 Django documentation

This tutorial begins where Tutorial 3 left off. We’re continuing the web-poll application and will focus on form processing and cutting down our code. Where to get help: If you’re having trouble going...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 5

 Django documentation

This tutorial begins where Tutorial 4 left off. We’ve built a web-poll application, and we’ll now create some automated tests for it. Where to get help: If you’re having trouble going through this tut...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 6

 Django documentation

This tutorial begins where Tutorial 5 left off. We’ve built a tested web-poll application, and we’ll now add a stylesheet and an image. Aside from the HTML generated by the server, web applications ge...

Read more at Django documentation | Find similar documents

Writing your first Django app, part 7

 Django documentation

This tutorial begins where Tutorial 6 left off. We’re continuing the web-poll application and will focus on customizing Django’s automatically-generated admin site that we first explored in Tutorial 2...

Read more at Django documentation | Find similar documents

Advanced tutorial: How to write reusable apps

 Django documentation

This advanced tutorial begins where Tutorial 7 left off. We’ll be turning our web-poll into a standalone Python package you can reuse in new projects and share with other people. If you haven’t recent...

Read more at Django documentation | Find similar documents

What to read next

 Django documentation

So you’ve read all the introductory material and have decided you’d like to keep using Django. We’ve only just scratched the surface with this intro (in fact, if you’ve read every single word, you’ve ...

Read more at Django documentation | Find similar documents

Writing your first patch for Django

 Django documentation

Introduction Interested in giving back to the community a little? Maybe you’ve found a bug in Django that you’d like to see fixed, or maybe there’s a small feature you want added. Contributing back to...

Read more at Django documentation | Find similar documents

How to install Django

 Django documentation

This document will get you up and running with Django. Install Python Django is a Python web framework. See What Python version can I use with Django? for details. Get the latest version of Python at ...

Read more at Django documentation | Find similar documents