2008-08-24 06:25:40 +08:00
|
|
|
Getting started
|
|
|
|
===============
|
|
|
|
|
2010-10-09 16:12:50 +08:00
|
|
|
New to Django? Or to Web development in general? Well, you came to the right
|
2008-08-24 06:25:40 +08:00
|
|
|
place: read this material to quickly get up and running.
|
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
2012-10-31 03:53:56 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
overview
|
|
|
|
install
|
|
|
|
tutorial01
|
|
|
|
tutorial02
|
|
|
|
tutorial03
|
|
|
|
tutorial04
|
2012-12-15 21:03:17 +08:00
|
|
|
tutorial05
|
2013-03-04 19:05:11 +08:00
|
|
|
tutorial06
|
2012-10-31 03:53:56 +08:00
|
|
|
reusable-apps
|
2008-08-24 06:25:40 +08:00
|
|
|
whatsnext
|
2012-10-31 08:09:49 +08:00
|
|
|
contributing
|
2012-10-31 03:53:56 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
If you're new to Python_, you might want to start by getting an idea of what
|
|
|
|
the language is like. Django is 100% Python, so if you've got minimal
|
|
|
|
comfort with Python you'll probably get a lot more out of Django.
|
2012-10-31 03:53:56 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
If you're new to programming entirely, you might want to start with this
|
|
|
|
`list of Python resources for non-programmers`_
|
2012-10-31 03:53:56 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
If you already know a few other languages and want to get up to speed with
|
2013-04-01 20:03:55 +08:00
|
|
|
Python quickly, we recommend "Dive Into Python" (for `Python 2`_, for
|
|
|
|
`Python 3`_, also available in a
|
2008-08-24 06:25:40 +08:00
|
|
|
`dead-tree version`_). If that's not quite your style, there are quite
|
|
|
|
a few other `books about Python`_.
|
2012-10-31 03:53:56 +08:00
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
.. _python: http://python.org/
|
|
|
|
.. _list of Python resources for non-programmers: http://wiki.python.org/moin/BeginnersGuide/NonProgrammers
|
2013-04-01 20:03:55 +08:00
|
|
|
.. _Python 2: http://diveintopython.net/
|
|
|
|
.. _Python 3: http://diveintopython3.net/
|
2008-08-24 06:25:40 +08:00
|
|
|
.. _dead-tree version: http://www.amazon.com/exec/obidos/ASIN/1590593561/ref=nosim/jacobian20
|
2012-10-31 03:53:56 +08:00
|
|
|
.. _books about Python: http://wiki.python.org/moin/PythonBooks
|