tutorial01.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. =====================================
  2. Writing your first Django app, part 1
  3. =====================================
  4. Let's learn by example.
  5. Throughout this tutorial, we'll walk you through the creation of a basic
  6. poll application.
  7. It'll consist of two parts:
  8. * A public site that lets people view polls and vote in them.
  9. * An admin site that lets you add, change, and delete polls.
  10. We'll assume you have :doc:`Django installed </intro/install>` already. You can
  11. tell Django is installed and which version by running the following command
  12. in a shell prompt (indicated by the $ prefix):
  13. .. console::
  14. $ python -m django --version
  15. If Django is installed, you should see the version of your installation. If it
  16. isn't, you'll get an error telling "No module named django".
  17. This tutorial is written for Django |version|, which supports Python 3.10 and
  18. later. If the Django version doesn't match, you can refer to the tutorial for
  19. your version of Django by using the version switcher at the bottom right corner
  20. of this page, or update Django to the newest version. If you're using an older
  21. version of Python, check :ref:`faq-python-version-support` to find a compatible
  22. version of Django.
  23. .. admonition:: Where to get help:
  24. If you're having trouble going through this tutorial, please head over to
  25. the :doc:`Getting Help</faq/help>` section of the FAQ.
  26. Creating a project
  27. ==================
  28. If this is your first time using Django, you'll have to take care of some
  29. initial setup. Namely, you'll need to auto-generate some code that establishes a
  30. Django :term:`project` -- a collection of settings for an instance of Django,
  31. including database configuration, Django-specific options and
  32. application-specific settings.
  33. From the command line, ``cd`` into a directory where you'd like to store your
  34. code and create a new directory named ``djangotutorial``. (This directory name
  35. doesn't matter to Django; you can rename it to anything you like.)
  36. .. console::
  37. $ mkdir djangotutorial
  38. Then, run the following command to bootstrap a new Django project:
  39. .. console::
  40. $ django-admin startproject mysite djangotutorial
  41. This will create a project called ``mysite`` inside the ``djangotutorial``
  42. directory. If it didn't work, see :ref:`troubleshooting-django-admin`.
  43. .. note::
  44. You'll need to avoid naming projects after built-in Python or Django
  45. components. In particular, this means you should avoid using names like
  46. ``django`` (which will conflict with Django itself) or ``test`` (which
  47. conflicts with a built-in Python package).
  48. Let's look at what :djadmin:`startproject` created:
  49. .. code-block:: text
  50. djangotutorial/
  51. manage.py
  52. mysite/
  53. __init__.py
  54. settings.py
  55. urls.py
  56. asgi.py
  57. wsgi.py
  58. These files are:
  59. * :file:`manage.py`: A command-line utility that lets you interact with this
  60. Django project in various ways. You can read all the details about
  61. :file:`manage.py` in :doc:`/ref/django-admin`.
  62. * :file:`mysite/`: A directory that is the actual Python package for your
  63. project. Its name is the Python package name you'll need to use to import
  64. anything inside it (e.g. ``mysite.urls``).
  65. * :file:`mysite/__init__.py`: An empty file that tells Python that this
  66. directory should be considered a Python package. If you're a Python beginner,
  67. read :ref:`more about packages <tut-packages>` in the official Python docs.
  68. * :file:`mysite/settings.py`: Settings/configuration for this Django
  69. project. :doc:`/topics/settings` will tell you all about how settings
  70. work.
  71. * :file:`mysite/urls.py`: The URL declarations for this Django project; a
  72. "table of contents" of your Django-powered site. You can read more about
  73. URLs in :doc:`/topics/http/urls`.
  74. * :file:`mysite/asgi.py`: An entry-point for ASGI-compatible web servers to
  75. serve your project. See :doc:`/howto/deployment/asgi/index` for more details.
  76. * :file:`mysite/wsgi.py`: An entry-point for WSGI-compatible web servers to
  77. serve your project. See :doc:`/howto/deployment/wsgi/index` for more details.
  78. The development server
  79. ======================
  80. Let's verify your Django project works. Change into the :file:`djangotutorial`
  81. directory, if you haven't already, and run the following commands:
  82. .. console::
  83. $ python manage.py runserver
  84. You'll see the following output on the command line:
  85. .. parsed-literal::
  86. Performing system checks...
  87. System check identified no issues (0 silenced).
  88. You have unapplied migrations; your app may not work properly until they are applied.
  89. Run 'python manage.py migrate' to apply them.
  90. |today| - 15:50:53
  91. Django version |version|, using settings 'mysite.settings'
  92. Starting development server at http://127.0.0.1:8000/
  93. Quit the server with CONTROL-C.
  94. WARNING: This is a development server. Do not use it in a production setting. Use a production WSGI or ASGI server instead.
  95. For more information on production servers see: https://docs.djangoproject.com/en/|version|/howto/deployment/
  96. .. note::
  97. Ignore the warning about unapplied database migrations for now; we'll deal
  98. with the database shortly.
  99. Now that the server's running, visit http://127.0.0.1:8000/ with your web
  100. browser. You'll see a "Congratulations!" page, with a rocket taking off.
  101. It worked!
  102. You've started the Django development server, a lightweight web server written
  103. purely in Python. We've included this with Django so you can develop things
  104. rapidly, without having to deal with configuring a production server -- such as
  105. Apache -- until you're ready for production.
  106. Now's a good time to note: **don't** use this server in anything resembling a
  107. production environment. It's intended only for use while developing. (We're in
  108. the business of making web frameworks, not web servers.)
  109. (To serve the site on a different port, see the :djadmin:`runserver` reference.)
  110. .. admonition:: Automatic reloading of :djadmin:`runserver`
  111. The development server automatically reloads Python code for each request
  112. as needed. You don't need to restart the server for code changes to take
  113. effect. However, some actions like adding files don't trigger a restart,
  114. so you'll have to restart the server in these cases.
  115. Creating the Polls app
  116. ======================
  117. Now that your environment -- a "project" -- is set up, you're set to start
  118. doing work.
  119. Each application you write in Django consists of a Python package that follows
  120. a certain convention. Django comes with a utility that automatically generates
  121. the basic directory structure of an app, so you can focus on writing code
  122. rather than creating directories.
  123. .. admonition:: Projects vs. apps
  124. What's the difference between a project and an app? An app is a web
  125. application that does something -- e.g., a blog system, a database of
  126. public records or a small poll app. A project is a collection of
  127. configuration and apps for a particular website. A project can contain
  128. multiple apps. An app can be in multiple projects.
  129. Your apps can live anywhere in your :ref:`Python path <tut-searchpath>`. In
  130. this tutorial, we'll create our poll app inside the ``djangotutorial`` folder.
  131. To create your app, make sure you're in the same directory as :file:`manage.py`
  132. and type this command:
  133. .. console::
  134. $ python manage.py startapp polls
  135. That'll create a directory :file:`polls`, which is laid out like this:
  136. .. code-block:: text
  137. polls/
  138. __init__.py
  139. admin.py
  140. apps.py
  141. migrations/
  142. __init__.py
  143. models.py
  144. tests.py
  145. views.py
  146. This directory structure will house the poll application.
  147. Write your first view
  148. =====================
  149. Let's write the first view. Open the file ``polls/views.py``
  150. and put the following Python code in it:
  151. .. code-block:: python
  152. :caption: ``polls/views.py``
  153. from django.http import HttpResponse
  154. def index(request):
  155. return HttpResponse("Hello, world. You're at the polls index.")
  156. This is the most basic view possible in Django. To access it in a browser, we
  157. need to map it to a URL - and for this we need to define a URL configuration,
  158. or "URLconf" for short. These URL configurations are defined inside each
  159. Django app, and they are Python files named ``urls.py``.
  160. To define a URLconf for the ``polls`` app, create a file ``polls/urls.py``
  161. with the following content:
  162. .. code-block:: python
  163. :caption: ``polls/urls.py``
  164. from django.urls import path
  165. from . import views
  166. urlpatterns = [
  167. path("", views.index, name="index"),
  168. ]
  169. Your app directory should now look like:
  170. .. code-block:: text
  171. polls/
  172. __init__.py
  173. admin.py
  174. apps.py
  175. migrations/
  176. __init__.py
  177. models.py
  178. tests.py
  179. urls.py
  180. views.py
  181. The next step is to configure the root URLconf in the ``mysite`` project to
  182. include the URLconf defined in ``polls.urls``. To do this, add an import for
  183. ``django.urls.include`` in ``mysite/urls.py`` and insert an
  184. :func:`~django.urls.include` in the ``urlpatterns`` list, so you have:
  185. .. code-block:: python
  186. :caption: ``mysite/urls.py``
  187. from django.contrib import admin
  188. from django.urls import include, path
  189. urlpatterns = [
  190. path("polls/", include("polls.urls")),
  191. path("admin/", admin.site.urls),
  192. ]
  193. The :func:`~django.urls.path` function expects at least two arguments:
  194. ``route`` and ``view``.
  195. The :func:`~django.urls.include` function allows referencing other URLconfs.
  196. Whenever Django encounters :func:`~django.urls.include`, it chops off whatever
  197. part of the URL matched up to that point and sends the remaining string to the
  198. included URLconf for further processing.
  199. The idea behind :func:`~django.urls.include` is to make it easy to
  200. plug-and-play URLs. Since polls are in their own URLconf
  201. (``polls/urls.py``), they can be placed under "/polls/", or under
  202. "/fun_polls/", or under "/content/polls/", or any other path root, and the
  203. app will still work.
  204. .. admonition:: When to use :func:`~django.urls.include()`
  205. You should always use ``include()`` when you include other URL patterns.
  206. The only exception is ``admin.site.urls``, which is a pre-built URLconf
  207. provided by Django for the default admin site.
  208. You have now wired an ``index`` view into the URLconf. Verify it's working with
  209. the following command:
  210. .. console::
  211. $ python manage.py runserver
  212. Go to http://localhost:8000/polls/ in your browser, and you should see the
  213. text "*Hello, world. You're at the polls index.*", which you defined in the
  214. ``index`` view.
  215. .. admonition:: Page not found?
  216. If you get an error page here, check that you're going to
  217. http://localhost:8000/polls/ and not http://localhost:8000/.
  218. When you're comfortable with the basic request and response flow, read
  219. :doc:`part 2 of this tutorial </intro/tutorial02>` to start working with the
  220. database.