reusable-apps.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. =============================================
  2. Advanced tutorial: How to write reusable apps
  3. =============================================
  4. This advanced tutorial begins where :doc:`Tutorial 6 </intro/tutorial06>`
  5. left off. We'll be turning our Web-poll into a standalone Python package
  6. you can reuse in new projects and share with other people.
  7. If you haven't recently completed Tutorials 1–6, we encourage you to review
  8. these so that your example project matches the one described below.
  9. Reusability matters
  10. ===================
  11. It's a lot of work to design, build, test and maintain a web application. Many
  12. Python and Django projects share common problems. Wouldn't it be great if we
  13. could save some of this repeated work?
  14. Reusability is the way of life in Python. `The Python Package Index (PyPI)
  15. <http://guide.python-distribute.org/contributing.html#pypi-info>`_ has a vast
  16. range of packages you can use in your own Python programs. Check out `Django
  17. Packages <https://www.djangopackages.com>`_ for existing reusable apps you could
  18. incorporate in your project. Django itself is also just a Python package. This
  19. means that you can take existing Python packages or Django apps and compose
  20. them into your own web project. You only need to write the parts that make
  21. your project unique.
  22. Let's say you were starting a new project that needed a polls app like the one
  23. we've been working on. How do you make this app reusable? Luckily, you're well
  24. on the way already. In :doc:`Tutorial 3 </intro/tutorial03>`, we saw how we
  25. could decouple polls from the project-level URLconf using an ``include``.
  26. In this tutorial, we'll take further steps to make the app easy to use in new
  27. projects and ready to publish for others to install and use.
  28. .. admonition:: Package? App?
  29. A Python `package <http://docs.python.org/tutorial/modules.html#packages>`_
  30. provides a way of grouping related Python code for easy reuse. A package
  31. contains one or more files of Python code (also known as "modules").
  32. A package can be imported with ``import foo.bar`` or ``from foo import
  33. bar``. For a directory (like ``polls``) to form a package, it must contain
  34. a special file ``__init__.py``, even if this file is empty.
  35. A Django *application* is just a Python package that is specifically
  36. intended for use in a Django project. An application may use common Django
  37. conventions, such as having ``models``, ``tests``, ``urls``, and ``views``
  38. submodules.
  39. Later on we use the term *packaging* to describe the process of making a
  40. Python package easy for others to install. It can be a little confusing, we
  41. know.
  42. Your project and your reusable app
  43. ==================================
  44. After the previous tutorials, our project should look like this::
  45. mysite/
  46. manage.py
  47. mysite/
  48. __init__.py
  49. settings.py
  50. urls.py
  51. wsgi.py
  52. polls/
  53. __init__.py
  54. admin.py
  55. models.py
  56. static/
  57. polls/
  58. images/
  59. background.gif
  60. style.css
  61. templates/
  62. polls/
  63. detail.html
  64. index.html
  65. results.html
  66. tests.py
  67. urls.py
  68. views.py
  69. templates/
  70. admin/
  71. base_site.html
  72. You created ``mysite/templates`` in :doc:`Tutorial 2 </intro/tutorial02>`,
  73. and ``polls/templates`` in :doc:`Tutorial 3 </intro/tutorial03>`. Now perhaps
  74. it is clearer why we chose to have separate template directories for the
  75. project and application: everything that is part of the polls application is in
  76. ``polls``. It makes the application self-contained and easier to drop into a
  77. new project.
  78. The ``polls`` directory could now be copied into a new Django project and
  79. immediately reused. It's not quite ready to be published though. For that, we
  80. need to package the app to make it easy for others to install.
  81. .. _installing-reusable-apps-prerequisites:
  82. Installing some prerequisites
  83. =============================
  84. The current state of Python packaging is a bit muddled with various tools. For
  85. this tutorial, we're going to use setuptools_ to build our package. It's the
  86. recommended packaging tool (merged with the ``distribute`` fork). We'll also be
  87. using `pip`_ to install and uninstall it. You should install these
  88. two packages now. If you need help, you can refer to :ref:`how to install
  89. Django with pip<installing-official-release>`. You can install ``setuptools``
  90. the same way.
  91. .. _setuptools: https://pypi.python.org/pypi/setuptools
  92. .. _pip: https://pypi.python.org/pypi/pip
  93. Packaging your app
  94. ==================
  95. Python *packaging* refers to preparing your app in a specific format that can
  96. be easily installed and used. Django itself is packaged very much like
  97. this. For a small app like polls, this process isn't too difficult.
  98. 1. First, create a parent directory for ``polls``, outside of your Django
  99. project. Call this directory ``django-polls``.
  100. .. admonition:: Choosing a name for your app
  101. When choosing a name for your package, check resources like PyPI to avoid
  102. naming conflicts with existing packages. It's often useful to prepend
  103. ``django-`` to your module name when creating a package to distribute.
  104. This helps others looking for Django apps identify your app as Django
  105. specific.
  106. Application labels (that is, the final part of the dotted path to
  107. application packages) *must* be unique in :setting:`INSTALLED_APPS`.
  108. Avoid using the same label as any of the Django :doc:`contrib packages
  109. </ref/contrib/index>`, for example ``auth``, ``admin``, or
  110. ``messages``.
  111. 2. Move the ``polls`` directory into the ``django-polls`` directory.
  112. 3. Create a file ``django-polls/README.rst`` with the following contents:
  113. .. snippet::
  114. :filename: django-polls/README.rst
  115. =====
  116. Polls
  117. =====
  118. Polls is a simple Django app to conduct Web-based polls. For each
  119. question, visitors can choose between a fixed number of answers.
  120. Detailed documentation is in the "docs" directory.
  121. Quick start
  122. -----------
  123. 1. Add "polls" to your INSTALLED_APPS setting like this::
  124. INSTALLED_APPS = (
  125. ...
  126. 'polls',
  127. )
  128. 2. Include the polls URLconf in your project urls.py like this::
  129. url(r'^polls/', include('polls.urls')),
  130. 3. Run `python manage.py migrate` to create the polls models.
  131. 4. Start the development server and visit http://127.0.0.1:8000/admin/
  132. to create a poll (you'll need the Admin app enabled).
  133. 5. Visit http://127.0.0.1:8000/polls/ to participate in the poll.
  134. 4. Create a ``django-polls/LICENSE`` file. Choosing a license is beyond the
  135. scope of this tutorial, but suffice it to say that code released publicly
  136. without a license is *useless*. Django and many Django-compatible apps are
  137. distributed under the BSD license; however, you're free to pick your own
  138. license. Just be aware that your licensing choice will affect who is able
  139. to use your code.
  140. 5. Next we'll create a ``setup.py`` file which provides details about how to
  141. build and install the app. A full explanation of this file is beyond the
  142. scope of this tutorial, but the `setuptools docs
  143. <http://pythonhosted.org/setuptools/setuptools.html>`_ have a good
  144. explanation. Create a file ``django-polls/setup.py`` with the following
  145. contents:
  146. .. snippet::
  147. :filename: django-polls/setup.py
  148. import os
  149. from setuptools import setup
  150. with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
  151. README = readme.read()
  152. # allow setup.py to be run from any path
  153. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  154. setup(
  155. name='django-polls',
  156. version='0.1',
  157. packages=['polls'],
  158. include_package_data=True,
  159. license='BSD License', # example license
  160. description='A simple Django app to conduct Web-based polls.',
  161. long_description=README,
  162. url='http://www.example.com/',
  163. author='Your Name',
  164. author_email='yourname@example.com',
  165. classifiers=[
  166. 'Environment :: Web Environment',
  167. 'Framework :: Django',
  168. 'Intended Audience :: Developers',
  169. 'License :: OSI Approved :: BSD License', # example license
  170. 'Operating System :: OS Independent',
  171. 'Programming Language :: Python',
  172. # Replace these appropriately if you are stuck on Python 2.
  173. 'Programming Language :: Python :: 3',
  174. 'Programming Language :: Python :: 3.2',
  175. 'Programming Language :: Python :: 3.3',
  176. 'Topic :: Internet :: WWW/HTTP',
  177. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  178. ],
  179. )
  180. 6. Only Python modules and packages are included in the package by default. To
  181. include additional files, we'll need to create a ``MANIFEST.in`` file. The
  182. setuptools docs referred to in the previous step discuss this file in more
  183. details. To include the templates, the ``README.rst`` and our ``LICENSE``
  184. file, create a file ``django-polls/MANIFEST.in`` with the following
  185. contents:
  186. .. snippet::
  187. :filename: django-polls/MANIFEST.in
  188. include LICENSE
  189. include README.rst
  190. recursive-include polls/static *
  191. recursive-include polls/templates *
  192. 7. It's optional, but recommended, to include detailed documentation with your
  193. app. Create an empty directory ``django-polls/docs`` for future
  194. documentation. Add an additional line to ``django-polls/MANIFEST.in``::
  195. recursive-include docs *
  196. Note that the ``docs`` directory won't be included in your package unless
  197. you add some files to it. Many Django apps also provide their documentation
  198. online through sites like `readthedocs.org <https://readthedocs.org>`_.
  199. 8. Try building your package with ``python setup.py sdist`` (run from inside
  200. ``django-polls``). This creates a directory called ``dist`` and builds your
  201. new package, ``django-polls-0.1.tar.gz``.
  202. For more information on packaging, see `The Hitchhiker's Guide to Packaging
  203. <http://guide.python-distribute.org/quickstart.html>`_.
  204. Using your own package
  205. ======================
  206. Since we moved the ``polls`` directory out of the project, it's no longer
  207. working. We'll now fix this by installing our new ``django-polls`` package.
  208. .. admonition:: Installing as a user library
  209. The following steps install ``django-polls`` as a user library. Per-user
  210. installs have a lot of advantages over installing the package system-wide,
  211. such as being usable on systems where you don't have administrator access
  212. as well as preventing the package from affecting system services and other
  213. users of the machine.
  214. Note that per-user installations can still affect the behavior of system
  215. tools that run as that user, so ``virtualenv`` is a more robust solution
  216. (see below).
  217. 1. To install the package, use pip (you already :ref:`installed it
  218. <installing-reusable-apps-prerequisites>`, right?)::
  219. pip install --user django-polls/dist/django-polls-0.1.tar.gz
  220. 2. With luck, your Django project should now work correctly again. Run the
  221. server again to confirm this.
  222. 3. To uninstall the package, use pip::
  223. pip uninstall django-polls
  224. .. _pip: https://pypi.python.org/pypi/pip
  225. Publishing your app
  226. ===================
  227. Now that we've packaged and tested ``django-polls``, it's ready to share with
  228. the world! If this wasn't just an example, you could now:
  229. * Email the package to a friend.
  230. * Upload the package on your Web site.
  231. * Post the package on a public repository, such as `The Python Package Index
  232. (PyPI) <http://guide.python-distribute.org/contributing.html#pypi-info>`_.
  233. For more information on PyPI, see the `Quickstart
  234. <http://guide.python-distribute.org/quickstart.html#register-your-package-with-the-python-package-index-pypi>`_
  235. section of The Hitchhiker's Guide to Packaging. One detail this guide mentions
  236. is choosing the license under which your code is distributed.
  237. Installing Python packages with virtualenv
  238. ==========================================
  239. Earlier, we installed the polls app as a user library. This has some
  240. disadvantages:
  241. * Modifying the user libraries can affect other Python software on your system.
  242. * You won't be able to run multiple versions of this package (or others with
  243. the same name).
  244. Typically, these situations only arise once you're maintaining several Django
  245. projects. When they do, the best solution is to use `virtualenv
  246. <http://www.virtualenv.org/>`_. This tool allows you to maintain multiple
  247. isolated Python environments, each with its own copy of the libraries and
  248. package namespace.