tutorial01.txt 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  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. .. code-block:: bash
  13. python -c "import django; print(django.get_version())"
  14. You should see either the version of your Django installation or an error
  15. telling "No module named django". Check also that the version number matches
  16. the version of this tutorial. If they don't match, you can refer to the
  17. tutorial for your version of Django or update Django to the newest version.
  18. See :doc:`How to install Django </topics/install>` for advice on how to remove
  19. older versions of Django and install a newer one.
  20. .. admonition:: Where to get help:
  21. If you're having trouble going through this tutorial, please post a message
  22. to `django-users`__ or drop by `#django on irc.freenode.net`__ to chat
  23. with other Django users who might be able to help.
  24. __ http://groups.google.com/group/django-users
  25. __ irc://irc.freenode.net/django
  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, then run the following command:
  35. .. code-block:: bash
  36. django-admin.py startproject mysite
  37. This will create a ``mysite`` directory in your current directory. If it didn't
  38. work, see :doc:`Troubleshooting </faq/troubleshooting>`.
  39. .. admonition:: Script name may differ in distribution packages
  40. If you installed Django using a Linux distribution's package manager
  41. (e.g. apt-get or yum) ``django-admin.py`` may have been renamed to
  42. ``django-admin``. You may continue through this documentation by omitting
  43. ``.py`` from each command.
  44. .. admonition:: Mac OS X permissions
  45. If you're using Mac OS X, you may see the message "permission denied" when
  46. you try to run ``django-admin.py startproject``. This is because, on
  47. Unix-based systems like OS X, a file must be marked as "executable" before it
  48. can be run as a program. To do this, open Terminal.app and navigate (using
  49. the ``cd`` command) to the directory where :doc:`django-admin.py
  50. </ref/django-admin>` is installed, then run the command
  51. ``sudo chmod +x django-admin.py``.
  52. .. note::
  53. You'll need to avoid naming projects after built-in Python or Django
  54. components. In particular, this means you should avoid using names like
  55. ``django`` (which will conflict with Django itself) or ``test`` (which
  56. conflicts with a built-in Python package).
  57. .. admonition:: Where should this code live?
  58. If your background is in plain old PHP (with no use of modern frameworks),
  59. you're probably used to putting code under the Web server's document root
  60. (in a place such as ``/var/www``). With Django, you don't do that. It's
  61. not a good idea to put any of this Python code within your Web server's
  62. document root, because it risks the possibility that people may be able
  63. to view your code over the Web. That's not good for security.
  64. Put your code in some directory **outside** of the document root, such as
  65. :file:`/home/mycode`.
  66. Let's look at what :djadmin:`startproject` created::
  67. mysite/
  68. manage.py
  69. mysite/
  70. __init__.py
  71. settings.py
  72. urls.py
  73. wsgi.py
  74. .. admonition:: Doesn't match what you see?
  75. The default project layout recently changed. If you're seeing a "flat"
  76. layout (with no inner :file:`mysite/` directory), you're probably using
  77. a version of Django that doesn't match this tutorial version. You'll
  78. want to either switch to the older tutorial or the newer Django version.
  79. These files are:
  80. * The outer :file:`mysite/` directory is just a container for your
  81. project. Its name doesn't matter to Django; you can rename it to anything
  82. you like.
  83. * :file:`manage.py`: A command-line utility that lets you interact with this
  84. Django project in various ways. You can read all the details about
  85. :file:`manage.py` in :doc:`/ref/django-admin`.
  86. * The inner :file:`mysite/` directory is the actual Python package for your
  87. project. Its name is the Python package name you'll need to use to import
  88. anything inside it (e.g. ``import mysite.settings``).
  89. * :file:`mysite/__init__.py`: An empty file that tells Python that this
  90. directory should be considered a Python package. (Read `more about
  91. packages`_ in the official Python docs if you're a Python beginner.)
  92. * :file:`mysite/settings.py`: Settings/configuration for this Django
  93. project. :doc:`/topics/settings` will tell you all about how settings
  94. work.
  95. * :file:`mysite/urls.py`: The URL declarations for this Django project; a
  96. "table of contents" of your Django-powered site. You can read more about
  97. URLs in :doc:`/topics/http/urls`.
  98. * :file:`mysite/wsgi.py`: An entry-point for WSGI-compatible webservers to
  99. serve your project. See :doc:`/howto/deployment/wsgi/index` for more details.
  100. .. _more about packages: http://docs.python.org/tutorial/modules.html#packages
  101. The development server
  102. ----------------------
  103. Let's verify this worked. Change into the outer :file:`mysite` directory, if
  104. you haven't already, and run the command ``python manage.py runserver``. You'll
  105. see the following output on the command line::
  106. Validating models...
  107. 0 errors found.
  108. Django version 1.4, using settings 'mysite.settings'
  109. Development server is running at http://127.0.0.1:8000/
  110. Quit the server with CONTROL-C.
  111. You've started the Django development server, a lightweight Web server written
  112. purely in Python. We've included this with Django so you can develop things
  113. rapidly, without having to deal with configuring a production server -- such as
  114. Apache -- until you're ready for production.
  115. Now's a good time to note: DON'T use this server in anything resembling a
  116. production environment. It's intended only for use while developing. (We're in
  117. the business of making Web frameworks, not Web servers.)
  118. Now that the server's running, visit http://127.0.0.1:8000/ with your Web
  119. browser. You'll see a "Welcome to Django" page, in pleasant, light-blue pastel.
  120. It worked!
  121. .. admonition:: Changing the port
  122. By default, the :djadmin:`runserver` command starts the development server
  123. on the internal IP at port 8000.
  124. If you want to change the server's port, pass
  125. it as a command-line argument. For instance, this command starts the server
  126. on port 8080:
  127. .. code-block:: bash
  128. python manage.py runserver 8080
  129. If you want to change the server's IP, pass it along with the port. So to
  130. listen on all public IPs (useful if you want to show off your work on other
  131. computers), use:
  132. .. code-block:: bash
  133. python manage.py runserver 0.0.0.0:8000
  134. Full docs for the development server can be found in the
  135. :djadmin:`runserver` reference.
  136. Database setup
  137. --------------
  138. Now, edit :file:`mysite/settings.py`. It's a normal Python module with
  139. module-level variables representing Django settings. Change the
  140. following keys in the :setting:`DATABASES` ``'default'`` item to match
  141. your database connection settings.
  142. * :setting:`ENGINE <DATABASE-ENGINE>` -- Either
  143. ``'django.db.backends.postgresql_psycopg2'``,
  144. ``'django.db.backends.mysql'``, ``'django.db.backends.sqlite3'`` or
  145. ``'django.db.backends.oracle'``. Other backends are :setting:`also available
  146. <DATABASE-ENGINE>`.
  147. * :setting:`NAME` -- The name of your database. If you're using
  148. SQLite, the database will be a file on your computer; in that
  149. case, :setting:`NAME` should be the full absolute path,
  150. including filename, of that file. If the file doesn't exist, it
  151. will automatically be created when you synchronize the database
  152. for the first time (see below).
  153. When specifying the path, always use forward slashes, even on
  154. Windows (e.g. ``C:/homes/user/mysite/sqlite3.db``).
  155. * :setting:`USER` -- Your database username (not used for SQLite).
  156. * :setting:`PASSWORD` -- Your database password (not used for
  157. SQLite).
  158. * :setting:`HOST` -- The host your database is on. Leave this as
  159. an empty string (or possibly ``127.0.0.1``) if your database server is on the
  160. same physical machine (not used for SQLite). See :setting:`HOST` for details.
  161. If you're new to databases, we recommend simply using SQLite by setting
  162. :setting:`ENGINE` to ``'django.db.backends.sqlite3'`` and :setting:`NAME` to
  163. the place where you'd like to store the database. SQLite is included in Python,
  164. so you won't need to install anything else to support your database.
  165. .. note::
  166. If you're using PostgreSQL or MySQL, make sure you've created a database by
  167. this point. Do that with "``CREATE DATABASE database_name;``" within your
  168. database's interactive prompt.
  169. If you're using SQLite, you don't need to create anything beforehand - the
  170. database file will be created automatically when it is needed.
  171. While you're editing :file:`settings.py`, set :setting:`TIME_ZONE` to your
  172. time zone. The default value is the Central time zone in the U.S. (Chicago).
  173. Also, note the :setting:`INSTALLED_APPS` setting toward the bottom of
  174. the file. That holds the names of all Django applications that are
  175. activated in this Django instance. Apps can be used in multiple projects, and
  176. you can package and distribute them for use by others in their projects.
  177. By default, :setting:`INSTALLED_APPS` contains the following apps, all of which
  178. come with Django:
  179. * :mod:`django.contrib.auth` -- An authentication system.
  180. * :mod:`django.contrib.contenttypes` -- A framework for content types.
  181. * :mod:`django.contrib.sessions` -- A session framework.
  182. * :mod:`django.contrib.sites` -- A framework for managing multiple sites
  183. with one Django installation.
  184. * :mod:`django.contrib.messages` -- A messaging framework.
  185. * :mod:`django.contrib.staticfiles` -- A framework for managing
  186. static files.
  187. These applications are included by default as a convenience for the common case.
  188. Each of these applications makes use of at least one database table, though,
  189. so we need to create the tables in the database before we can use them. To do
  190. that, run the following command:
  191. .. code-block:: bash
  192. python manage.py syncdb
  193. The :djadmin:`syncdb` command looks at the :setting:`INSTALLED_APPS` setting and
  194. creates any necessary database tables according to the database settings in your
  195. :file:`settings.py` file. You'll see a message for each database table it
  196. creates, and you'll get a prompt asking you if you'd like to create a superuser
  197. account for the authentication system. Go ahead and do that.
  198. If you're interested, run the command-line client for your database and type
  199. ``\dt`` (PostgreSQL), ``SHOW TABLES;`` (MySQL), or ``.schema`` (SQLite) to
  200. display the tables Django created.
  201. .. admonition:: For the minimalists
  202. Like we said above, the default applications are included for the common
  203. case, but not everybody needs them. If you don't need any or all of them,
  204. feel free to comment-out or delete the appropriate line(s) from
  205. :setting:`INSTALLED_APPS` before running :djadmin:`syncdb`. The
  206. :djadmin:`syncdb` command will only create tables for apps in
  207. :setting:`INSTALLED_APPS`.
  208. .. _creating-models:
  209. Creating models
  210. ===============
  211. Now that your environment -- a "project" -- is set up, you're set to start
  212. doing work.
  213. Each application you write in Django consists of a Python package, somewhere
  214. on your `Python path`_, that follows a certain convention. Django comes with a
  215. utility that automatically generates the basic directory structure of an app,
  216. so you can focus on writing code rather than creating directories.
  217. .. admonition:: Projects vs. apps
  218. What's the difference between a project and an app? An app is a Web
  219. application that does something -- e.g., a Weblog system, a database of
  220. public records or a simple poll app. A project is a collection of
  221. configuration and apps for a particular Web site. A project can contain
  222. multiple apps. An app can be in multiple projects.
  223. Your apps can live anywhere on your `Python path`_. In this tutorial, we'll
  224. create our poll app right next to your :file:`manage.py` file so that it can be
  225. imported as its own top-level module, rather than a submodule of ``mysite``.
  226. To create your app, make sure you're in the same directory as :file:`manage.py`
  227. and type this command:
  228. .. code-block:: bash
  229. python manage.py startapp polls
  230. That'll create a directory :file:`polls`, which is laid out like this::
  231. polls/
  232. __init__.py
  233. models.py
  234. tests.py
  235. views.py
  236. This directory structure will house the poll application.
  237. The first step in writing a database Web app in Django is to define your models
  238. -- essentially, your database layout, with additional metadata.
  239. .. admonition:: Philosophy
  240. A model is the single, definitive source of data about your data. It contains
  241. the essential fields and behaviors of the data you're storing. Django follows
  242. the :ref:`DRY Principle <dry>`. The goal is to define your data model in one
  243. place and automatically derive things from it.
  244. In our simple poll app, we'll create two models: ``Poll`` and ``Choice``.
  245. A ``Poll`` has a question and a publication date. A ``Choice`` has two fields:
  246. the text of the choice and a vote tally. Each ``Choice`` is associated with a
  247. ``Poll``.
  248. These concepts are represented by simple Python classes. Edit the
  249. :file:`polls/models.py` file so it looks like this::
  250. from django.db import models
  251. class Poll(models.Model):
  252. question = models.CharField(max_length=200)
  253. pub_date = models.DateTimeField('date published')
  254. class Choice(models.Model):
  255. poll = models.ForeignKey(Poll)
  256. choice_text = models.CharField(max_length=200)
  257. votes = models.IntegerField()
  258. The code is straightforward. Each model is represented by a class that
  259. subclasses :class:`django.db.models.Model`. Each model has a number of class
  260. variables, each of which represents a database field in the model.
  261. Each field is represented by an instance of a :class:`~django.db.models.Field`
  262. class -- e.g., :class:`~django.db.models.CharField` for character fields and
  263. :class:`~django.db.models.DateTimeField` for datetimes. This tells Django what
  264. type of data each field holds.
  265. The name of each :class:`~django.db.models.Field` instance (e.g. ``question`` or
  266. ``pub_date`` ) is the field's name, in machine-friendly format. You'll use this
  267. value in your Python code, and your database will use it as the column name.
  268. You can use an optional first positional argument to a
  269. :class:`~django.db.models.Field` to designate a human-readable name. That's used
  270. in a couple of introspective parts of Django, and it doubles as documentation.
  271. If this field isn't provided, Django will use the machine-readable name. In this
  272. example, we've only defined a human-readable name for ``Poll.pub_date``. For all
  273. other fields in this model, the field's machine-readable name will suffice as
  274. its human-readable name.
  275. Some :class:`~django.db.models.Field` classes have required elements.
  276. :class:`~django.db.models.CharField`, for example, requires that you give it a
  277. :attr:`~django.db.models.Field.max_length`. That's used not only in the database
  278. schema, but in validation, as we'll soon see.
  279. Finally, note a relationship is defined, using
  280. :class:`~django.db.models.ForeignKey`. That tells Django each ``Choice`` is related
  281. to a single ``Poll``. Django supports all the common database relationships:
  282. many-to-ones, many-to-manys and one-to-ones.
  283. .. _`Python path`: http://docs.python.org/tutorial/modules.html#the-module-search-path
  284. Activating models
  285. =================
  286. That small bit of model code gives Django a lot of information. With it, Django
  287. is able to:
  288. * Create a database schema (``CREATE TABLE`` statements) for this app.
  289. * Create a Python database-access API for accessing ``Poll`` and ``Choice`` objects.
  290. But first we need to tell our project that the ``polls`` app is installed.
  291. .. admonition:: Philosophy
  292. Django apps are "pluggable": You can use an app in multiple projects, and
  293. you can distribute apps, because they don't have to be tied to a given
  294. Django installation.
  295. Edit the :file:`settings.py` file again, and change the
  296. :setting:`INSTALLED_APPS` setting to include the string ``'polls'``. So
  297. it'll look like this::
  298. INSTALLED_APPS = (
  299. 'django.contrib.auth',
  300. 'django.contrib.contenttypes',
  301. 'django.contrib.sessions',
  302. 'django.contrib.sites',
  303. 'django.contrib.messages',
  304. 'django.contrib.staticfiles',
  305. # Uncomment the next line to enable the admin:
  306. # 'django.contrib.admin',
  307. # Uncomment the next line to enable admin documentation:
  308. # 'django.contrib.admindocs',
  309. 'polls',
  310. )
  311. Now Django knows to include the ``polls`` app. Let's run another
  312. command:
  313. .. code-block:: bash
  314. python manage.py sql polls
  315. You should see something similar to the following (the ``CREATE TABLE`` SQL
  316. statements for the polls app):
  317. .. code-block:: sql
  318. BEGIN;
  319. CREATE TABLE "polls_poll" (
  320. "id" serial NOT NULL PRIMARY KEY,
  321. "question" varchar(200) NOT NULL,
  322. "pub_date" timestamp with time zone NOT NULL
  323. );
  324. CREATE TABLE "polls_choice" (
  325. "id" serial NOT NULL PRIMARY KEY,
  326. "poll_id" integer NOT NULL REFERENCES "polls_poll" ("id") DEFERRABLE INITIALLY DEFERRED,
  327. "choice_text" varchar(200) NOT NULL,
  328. "votes" integer NOT NULL
  329. );
  330. COMMIT;
  331. Note the following:
  332. * The exact output will vary depending on the database you are using.
  333. * Table names are automatically generated by combining the name of the app
  334. (``polls``) and the lowercase name of the model -- ``poll`` and
  335. ``choice``. (You can override this behavior.)
  336. * Primary keys (IDs) are added automatically. (You can override this, too.)
  337. * By convention, Django appends ``"_id"`` to the foreign key field name.
  338. (Yes, you can override this, as well.)
  339. * The foreign key relationship is made explicit by a ``REFERENCES``
  340. statement.
  341. * It's tailored to the database you're using, so database-specific field
  342. types such as ``auto_increment`` (MySQL), ``serial`` (PostgreSQL), or
  343. ``integer primary key`` (SQLite) are handled for you automatically. Same
  344. goes for quoting of field names -- e.g., using double quotes or single
  345. quotes. The author of this tutorial runs PostgreSQL, so the example
  346. output is in PostgreSQL syntax.
  347. * The :djadmin:`sql` command doesn't actually run the SQL in your database -
  348. it just prints it to the screen so that you can see what SQL Django thinks
  349. is required. If you wanted to, you could copy and paste this SQL into your
  350. database prompt. However, as we will see shortly, Django provides an
  351. easier way of committing the SQL to the database.
  352. If you're interested, also run the following commands:
  353. * :djadmin:`python manage.py validate <validate>` -- Checks for any errors
  354. in the construction of your models.
  355. * :djadmin:`python manage.py sqlcustom polls <sqlcustom>` -- Outputs any
  356. :ref:`custom SQL statements <initial-sql>` (such as table modifications or
  357. constraints) that are defined for the application.
  358. * :djadmin:`python manage.py sqlclear polls <sqlclear>` -- Outputs the
  359. necessary ``DROP TABLE`` statements for this app, according to which
  360. tables already exist in your database (if any).
  361. * :djadmin:`python manage.py sqlindexes polls <sqlindexes>` -- Outputs the
  362. ``CREATE INDEX`` statements for this app.
  363. * :djadmin:`python manage.py sqlall polls <sqlall>` -- A combination of all
  364. the SQL from the :djadmin:`sql`, :djadmin:`sqlcustom`, and
  365. :djadmin:`sqlindexes` commands.
  366. Looking at the output of those commands can help you understand what's actually
  367. happening under the hood.
  368. Now, run :djadmin:`syncdb` again to create those model tables in your database:
  369. .. code-block:: bash
  370. python manage.py syncdb
  371. The :djadmin:`syncdb` command runs the SQL from :djadmin:`sqlall` on your
  372. database for all apps in :setting:`INSTALLED_APPS` that don't already exist in
  373. your database. This creates all the tables, initial data and indexes for any
  374. apps you've added to your project since the last time you ran syncdb.
  375. :djadmin:`syncdb` can be called as often as you like, and it will only ever
  376. create the tables that don't exist.
  377. Read the :doc:`django-admin.py documentation </ref/django-admin>` for full
  378. information on what the ``manage.py`` utility can do.
  379. Playing with the API
  380. ====================
  381. Now, let's hop into the interactive Python shell and play around with the free
  382. API Django gives you. To invoke the Python shell, use this command:
  383. .. code-block:: bash
  384. python manage.py shell
  385. We're using this instead of simply typing "python", because :file:`manage.py`
  386. sets the ``DJANGO_SETTINGS_MODULE`` environment variable, which gives Django
  387. the Python import path to your :file:`settings.py` file.
  388. .. admonition:: Bypassing manage.py
  389. If you'd rather not use :file:`manage.py`, no problem. Just set the
  390. ``DJANGO_SETTINGS_MODULE`` environment variable to ``mysite.settings`` and
  391. run ``python`` from the same directory :file:`manage.py` is in (or ensure
  392. that directory is on the Python path, so that ``import mysite`` works).
  393. For more information on all of this, see the :doc:`django-admin.py
  394. documentation </ref/django-admin>`.
  395. Once you're in the shell, explore the :doc:`database API </topics/db/queries>`::
  396. >>> from polls.models import Poll, Choice # Import the model classes we just wrote.
  397. # No polls are in the system yet.
  398. >>> Poll.objects.all()
  399. []
  400. # Create a new Poll.
  401. # Support for time zones is enabled in the default settings file, so
  402. # Django expects a datetime with tzinfo for pub_date. Use timezone.now()
  403. # instead of datetime.datetime.now() and it will do the right thing.
  404. >>> from django.utils import timezone
  405. >>> p = Poll(question="What's new?", pub_date=timezone.now())
  406. # Save the object into the database. You have to call save() explicitly.
  407. >>> p.save()
  408. # Now it has an ID. Note that this might say "1L" instead of "1", depending
  409. # on which database you're using. That's no biggie; it just means your
  410. # database backend prefers to return integers as Python long integer
  411. # objects.
  412. >>> p.id
  413. 1
  414. # Access database columns via Python attributes.
  415. >>> p.question
  416. "What's new?"
  417. >>> p.pub_date
  418. datetime.datetime(2012, 2, 26, 13, 0, 0, 775217, tzinfo=<UTC>)
  419. # Change values by changing the attributes, then calling save().
  420. >>> p.question = "What's up?"
  421. >>> p.save()
  422. # objects.all() displays all the polls in the database.
  423. >>> Poll.objects.all()
  424. [<Poll: Poll object>]
  425. Wait a minute. ``<Poll: Poll object>`` is, utterly, an unhelpful representation
  426. of this object. Let's fix that by editing the polls model (in the
  427. ``polls/models.py`` file) and adding a
  428. :meth:`~django.db.models.Model.__unicode__` method to both ``Poll`` and
  429. ``Choice``::
  430. class Poll(models.Model):
  431. # ...
  432. def __unicode__(self):
  433. return self.question
  434. class Choice(models.Model):
  435. # ...
  436. def __unicode__(self):
  437. return self.choice_text
  438. It's important to add :meth:`~django.db.models.Model.__unicode__` methods to
  439. your models, not only for your own sanity when dealing with the interactive
  440. prompt, but also because objects' representations are used throughout Django's
  441. automatically-generated admin.
  442. .. admonition:: Why :meth:`~django.db.models.Model.__unicode__` and not
  443. :meth:`~django.db.models.Model.__str__`?
  444. If you're familiar with Python, you might be in the habit of adding
  445. :meth:`~django.db.models.Model.__str__` methods to your classes, not
  446. :meth:`~django.db.models.Model.__unicode__` methods. We use
  447. :meth:`~django.db.models.Model.__unicode__` here because Django models deal
  448. with Unicode by default. All data stored in your database is converted to
  449. Unicode when it's returned.
  450. Django models have a default :meth:`~django.db.models.Model.__str__` method
  451. that calls :meth:`~django.db.models.Model.__unicode__` and converts the
  452. result to a UTF-8 bytestring. This means that ``unicode(p)`` will return a
  453. Unicode string, and ``str(p)`` will return a normal string, with characters
  454. encoded as UTF-8.
  455. If all of this is gibberish to you, just remember to add
  456. :meth:`~django.db.models.Model.__unicode__` methods to your models. With any
  457. luck, things should Just Work for you.
  458. Note these are normal Python methods. Let's add a custom method, just for
  459. demonstration::
  460. import datetime
  461. from django.utils import timezone
  462. # ...
  463. class Poll(models.Model):
  464. # ...
  465. def was_published_recently(self):
  466. return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
  467. Note the addition of ``import datetime`` and ``from django.utils import
  468. timezone``, to reference Python's standard :mod:`datetime` module and Django's
  469. time-zone-related utilities in :mod:`django.utils.timezone`, respectively. If
  470. you aren't familiar with time zone handling in Python, you can learn more in
  471. the :doc:`time zone support docs </topics/i18n/timezones>`.
  472. Save these changes and start a new Python interactive shell by running
  473. ``python manage.py shell`` again::
  474. >>> from polls.models import Poll, Choice
  475. # Make sure our __unicode__() addition worked.
  476. >>> Poll.objects.all()
  477. [<Poll: What's up?>]
  478. # Django provides a rich database lookup API that's entirely driven by
  479. # keyword arguments.
  480. >>> Poll.objects.filter(id=1)
  481. [<Poll: What's up?>]
  482. >>> Poll.objects.filter(question__startswith='What')
  483. [<Poll: What's up?>]
  484. # Get the poll whose year is 2012.
  485. >>> Poll.objects.get(pub_date__year=2012)
  486. <Poll: What's up?>
  487. # Request an ID that doesn't exist, this will raise an exception.
  488. >>> Poll.objects.get(id=2)
  489. Traceback (most recent call last):
  490. ...
  491. DoesNotExist: Poll matching query does not exist. Lookup parameters were {'id': 2}
  492. # Lookup by a primary key is the most common case, so Django provides a
  493. # shortcut for primary-key exact lookups.
  494. # The following is identical to Poll.objects.get(id=1).
  495. >>> Poll.objects.get(pk=1)
  496. <Poll: What's up?>
  497. # Make sure our custom method worked.
  498. >>> p = Poll.objects.get(pk=1)
  499. >>> p.was_published_recently()
  500. True
  501. # Give the Poll a couple of Choices. The create call constructs a new
  502. # Choice object, does the INSERT statement, adds the choice to the set
  503. # of available choices and returns the new Choice object. Django creates
  504. # a set to hold the "other side" of a ForeignKey relation
  505. # (e.g. a poll's choices) which can be accessed via the API.
  506. >>> p = Poll.objects.get(pk=1)
  507. # Display any choices from the related object set -- none so far.
  508. >>> p.choice_set.all()
  509. []
  510. # Create three choices.
  511. >>> p.choice_set.create(choice_text='Not much', votes=0)
  512. <Choice: Not much>
  513. >>> p.choice_set.create(choice_text='The sky', votes=0)
  514. <Choice: The sky>
  515. >>> c = p.choice_set.create(choice_text='Just hacking again', votes=0)
  516. # Choice objects have API access to their related Poll objects.
  517. >>> c.poll
  518. <Poll: What's up?>
  519. # And vice versa: Poll objects get access to Choice objects.
  520. >>> p.choice_set.all()
  521. [<Choice: Not much>, <Choice: The sky>, <Choice: Just hacking again>]
  522. >>> p.choice_set.count()
  523. 3
  524. # The API automatically follows relationships as far as you need.
  525. # Use double underscores to separate relationships.
  526. # This works as many levels deep as you want; there's no limit.
  527. # Find all Choices for any poll whose pub_date is in 2012.
  528. >>> Choice.objects.filter(poll__pub_date__year=2012)
  529. [<Choice: Not much>, <Choice: The sky>, <Choice: Just hacking again>]
  530. # Let's delete one of the choices. Use delete() for that.
  531. >>> c = p.choice_set.filter(choice_text__startswith='Just hacking')
  532. >>> c.delete()
  533. For more information on model relations, see :doc:`Accessing related objects
  534. </ref/models/relations>`. For more on how to use double underscores to perform
  535. field lookups via the API, see :ref:`Field lookups <field-lookups-intro>`. For
  536. full details on the database API, see our :doc:`Database API reference
  537. </topics/db/queries>`.
  538. When you're comfortable with the API, read :doc:`part 2 of this tutorial
  539. </intro/tutorial02>` to get Django's automatic admin working.