reusable-apps.txt 13 KB

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