overview.txt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. ==================
  2. Django at a glance
  3. ==================
  4. Because Django was developed in a fast-paced newsroom environment, it was
  5. designed to make common Web-development tasks fast and easy. Here's an informal
  6. overview of how to write a database-driven Web app with Django.
  7. The goal of this document is to give you enough technical specifics to
  8. understand how Django works, but this isn't intended to be a tutorial or
  9. reference -- but we've got both! When you're ready to start a project, you can
  10. :doc:`start with the tutorial </intro/tutorial01>` or :doc:`dive right into more
  11. detailed documentation </topics/index>`.
  12. Design your model
  13. =================
  14. Although you can use Django without a database, it comes with an
  15. object-relational mapper in which you describe your database layout in Python
  16. code.
  17. The :doc:`data-model syntax </topics/db/models>` offers many rich ways of
  18. representing your models -- so far, it's been solving two years' worth of
  19. database-schema problems. Here's a quick example, which might be saved in
  20. the file ``mysite/news/models.py``::
  21. from django.db import models
  22. class Reporter(models.Model):
  23. full_name = models.CharField(max_length=70)
  24. def __unicode__(self):
  25. return self.full_name
  26. class Article(models.Model):
  27. pub_date = models.DateField()
  28. headline = models.CharField(max_length=200)
  29. content = models.TextField()
  30. reporter = models.ForeignKey(Reporter)
  31. def __unicode__(self):
  32. return self.headline
  33. Install it
  34. ==========
  35. Next, run the Django command-line utility to create the database tables
  36. automatically:
  37. .. code-block:: bash
  38. manage.py syncdb
  39. The :djadmin:`syncdb` command looks at all your available models and creates
  40. tables in your database for whichever tables don't already exist.
  41. Enjoy the free API
  42. ==================
  43. With that, you've got a free, and rich, :doc:`Python API </topics/db/queries>` to
  44. access your data. The API is created on the fly, no code generation necessary:
  45. .. code-block:: python
  46. # Import the models we created from our "news" app
  47. >>> from news.models import Reporter, Article
  48. # No reporters are in the system yet.
  49. >>> Reporter.objects.all()
  50. []
  51. # Create a new Reporter.
  52. >>> r = Reporter(full_name='John Smith')
  53. # Save the object into the database. You have to call save() explicitly.
  54. >>> r.save()
  55. # Now it has an ID.
  56. >>> r.id
  57. 1
  58. # Now the new reporter is in the database.
  59. >>> Reporter.objects.all()
  60. [<Reporter: John Smith>]
  61. # Fields are represented as attributes on the Python object.
  62. >>> r.full_name
  63. 'John Smith'
  64. # Django provides a rich database lookup API.
  65. >>> Reporter.objects.get(id=1)
  66. <Reporter: John Smith>
  67. >>> Reporter.objects.get(full_name__startswith='John')
  68. <Reporter: John Smith>
  69. >>> Reporter.objects.get(full_name__contains='mith')
  70. <Reporter: John Smith>
  71. >>> Reporter.objects.get(id=2)
  72. Traceback (most recent call last):
  73. ...
  74. DoesNotExist: Reporter matching query does not exist. Lookup parameters were {'id': 2}
  75. # Create an article.
  76. >>> from datetime import date
  77. >>> a = Article(pub_date=date.today(), headline='Django is cool',
  78. ... content='Yeah.', reporter=r)
  79. >>> a.save()
  80. # Now the article is in the database.
  81. >>> Article.objects.all()
  82. [<Article: Django is cool>]
  83. # Article objects get API access to related Reporter objects.
  84. >>> r = a.reporter
  85. >>> r.full_name
  86. 'John Smith'
  87. # And vice versa: Reporter objects get API access to Article objects.
  88. >>> r.article_set.all()
  89. [<Article: Django is cool>]
  90. # The API follows relationships as far as you need, performing efficient
  91. # JOINs for you behind the scenes.
  92. # This finds all articles by a reporter whose name starts with "John".
  93. >>> Article.objects.filter(reporter__full_name__startswith="John")
  94. [<Article: Django is cool>]
  95. # Change an object by altering its attributes and calling save().
  96. >>> r.full_name = 'Billy Goat'
  97. >>> r.save()
  98. # Delete an object with delete().
  99. >>> r.delete()
  100. A dynamic admin interface: it's not just scaffolding -- it's the whole house
  101. ============================================================================
  102. Once your models are defined, Django can automatically create a professional,
  103. production ready :doc:`administrative interface </ref/contrib/admin/index>` -- a Web
  104. site that lets authenticated users add, change and delete objects. It's as easy
  105. as registering your model in the admin site::
  106. # In models.py...
  107. from django.db import models
  108. class Article(models.Model):
  109. pub_date = models.DateField()
  110. headline = models.CharField(max_length=200)
  111. content = models.TextField()
  112. reporter = models.ForeignKey(Reporter)
  113. # In admin.py in the same directory...
  114. import models
  115. from django.contrib import admin
  116. admin.site.register(models.Article)
  117. The philosophy here is that your site is edited by a staff, or a client, or
  118. maybe just you -- and you don't want to have to deal with creating backend
  119. interfaces just to manage content.
  120. One typical workflow in creating Django apps is to create models and get the
  121. admin sites up and running as fast as possible, so your staff (or clients) can
  122. start populating data. Then, develop the way data is presented to the public.
  123. Design your URLs
  124. ================
  125. A clean, elegant URL scheme is an important detail in a high-quality Web
  126. application. Django encourages beautiful URL design and doesn't put any cruft
  127. in URLs, like ``.php`` or ``.asp``.
  128. To design URLs for an app, you create a Python module called a :doc:`URLconf
  129. </topics/http/urls>`. A table of contents for your app, it contains a simple mapping
  130. between URL patterns and Python callback functions. URLconfs also serve to
  131. decouple URLs from Python code.
  132. Here's what a URLconf might look like for the ``Reporter``/``Article``
  133. example above::
  134. from django.conf.urls import patterns
  135. urlpatterns = patterns('',
  136. (r'^articles/(\d{4})/$', 'news.views.year_archive'),
  137. (r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
  138. (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
  139. )
  140. The code above maps URLs, as simple regular expressions, to the location of
  141. Python callback functions ("views"). The regular expressions use parenthesis to
  142. "capture" values from the URLs. When a user requests a page, Django runs
  143. through each pattern, in order, and stops at the first one that matches the
  144. requested URL. (If none of them matches, Django calls a special-case 404 view.)
  145. This is blazingly fast, because the regular expressions are compiled at load
  146. time.
  147. Once one of the regexes matches, Django imports and calls the given view, which
  148. is a simple Python function. Each view gets passed a request object --
  149. which contains request metadata -- and the values captured in the regex.
  150. For example, if a user requested the URL "/articles/2005/05/39323/", Django
  151. would call the function ``news.views.article_detail(request,
  152. '2005', '05', '39323')``.
  153. Write your views
  154. ================
  155. Each view is responsible for doing one of two things: Returning an
  156. :class:`~django.http.HttpResponse` object containing the content for the
  157. requested page, or raising an exception such as :class:`~django.http.Http404`.
  158. The rest is up to you.
  159. Generally, a view retrieves data according to the parameters, loads a template
  160. and renders the template with the retrieved data. Here's an example view for
  161. ``year_archive`` from above::
  162. from django.shortcuts import render_to_response
  163. def year_archive(request, year):
  164. a_list = Article.objects.filter(pub_date__year=year)
  165. return render_to_response('news/year_archive.html', {'year': year, 'article_list': a_list})
  166. This example uses Django's :doc:`template system </topics/templates>`, which has
  167. several powerful features but strives to stay simple enough for non-programmers
  168. to use.
  169. Design your templates
  170. =====================
  171. The code above loads the ``news/year_archive.html`` template.
  172. Django has a template search path, which allows you to minimize redundancy among
  173. templates. In your Django settings, you specify a list of directories to check
  174. for templates. If a template doesn't exist in the first directory, it checks the
  175. second, and so on.
  176. Let's say the ``news/year_archive.html`` template was found. Here's what that
  177. might look like:
  178. .. code-block:: html+django
  179. {% extends "base.html" %}
  180. {% block title %}Articles for {{ year }}{% endblock %}
  181. {% block content %}
  182. <h1>Articles for {{ year }}</h1>
  183. {% for article in article_list %}
  184. <p>{{ article.headline }}</p>
  185. <p>By {{ article.reporter.full_name }}</p>
  186. <p>Published {{ article.pub_date|date:"F j, Y" }}</p>
  187. {% endfor %}
  188. {% endblock %}
  189. Variables are surrounded by double-curly braces. ``{{ article.headline }}``
  190. means "Output the value of the article's headline attribute." But dots aren't
  191. used only for attribute lookup: They also can do dictionary-key lookup, index
  192. lookup and function calls.
  193. Note ``{{ article.pub_date|date:"F j, Y" }}`` uses a Unix-style "pipe" (the "|"
  194. character). This is called a template filter, and it's a way to filter the value
  195. of a variable. In this case, the date filter formats a Python datetime object in
  196. the given format (as found in PHP's date function).
  197. You can chain together as many filters as you'd like. You can write custom
  198. filters. You can write custom template tags, which run custom Python code behind
  199. the scenes.
  200. Finally, Django uses the concept of "template inheritance": That's what the
  201. ``{% extends "base.html" %}`` does. It means "First load the template called
  202. 'base', which has defined a bunch of blocks, and fill the blocks with the
  203. following blocks." In short, that lets you dramatically cut down on redundancy
  204. in templates: each template has to define only what's unique to that template.
  205. Here's what the "base.html" template, including the use of :doc:`static files
  206. </howto/static-files/index>`, might look like:
  207. .. code-block:: html+django
  208. {% load staticfiles %}
  209. <html>
  210. <head>
  211. <title>{% block title %}{% endblock %}</title>
  212. </head>
  213. <body>
  214. <img src="{% static "images/sitelogo.png" %}" alt="Logo" />
  215. {% block content %}{% endblock %}
  216. </body>
  217. </html>
  218. Simplistically, it defines the look-and-feel of the site (with the site's logo),
  219. and provides "holes" for child templates to fill. This makes a site redesign as
  220. easy as changing a single file -- the base template.
  221. It also lets you create multiple versions of a site, with different base
  222. templates, while reusing child templates. Django's creators have used this
  223. technique to create strikingly different cell-phone editions of sites -- simply
  224. by creating a new base template.
  225. Note that you don't have to use Django's template system if you prefer another
  226. system. While Django's template system is particularly well-integrated with
  227. Django's model layer, nothing forces you to use it. For that matter, you don't
  228. have to use Django's database API, either. You can use another database
  229. abstraction layer, you can read XML files, you can read files off disk, or
  230. anything you want. Each piece of Django -- models, views, templates -- is
  231. decoupled from the next.
  232. This is just the surface
  233. ========================
  234. This has been only a quick overview of Django's functionality. Some more useful
  235. features:
  236. * A :doc:`caching framework </topics/cache>` that integrates with memcached
  237. or other backends.
  238. * A :doc:`syndication framework </ref/contrib/syndication>` that makes
  239. creating RSS and Atom feeds as easy as writing a small Python class.
  240. * More sexy automatically-generated admin features -- this overview barely
  241. scratched the surface.
  242. The next obvious steps are for you to `download Django`_, read :doc:`the
  243. tutorial </intro/tutorial01>` and join `the community`_. Thanks for your
  244. interest!
  245. .. _download Django: https://www.djangoproject.com/download/
  246. .. _the community: https://www.djangoproject.com/community/