custom-management-commands.txt 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. ========================================
  2. Writing custom ``django-admin`` commands
  3. ========================================
  4. .. module:: django.core.management
  5. Applications can register their own actions with ``manage.py``. For example,
  6. you might want to add a ``manage.py`` action for a Django app that you're
  7. distributing. In this document, we will be building a custom ``closepoll``
  8. command for the ``polls`` application from the
  9. :doc:`tutorial</intro/tutorial01>`.
  10. To do this, just add a ``management/commands`` directory to the application.
  11. Django will register a ``manage.py`` command for each Python module in that
  12. directory whose name doesn't begin with an underscore. For example::
  13. polls/
  14. __init__.py
  15. models.py
  16. management/
  17. __init__.py
  18. commands/
  19. __init__.py
  20. _private.py
  21. closepoll.py
  22. tests.py
  23. views.py
  24. In this example, the ``closepoll`` command will be made available to any project
  25. that includes the ``polls`` application in :setting:`INSTALLED_APPS`.
  26. The ``_private.py`` module will not be available as a management command.
  27. The ``closepoll.py`` module has only one requirement -- it must define a class
  28. ``Command`` that extends :class:`BaseCommand` or one of its
  29. :ref:`subclasses<ref-basecommand-subclasses>`.
  30. .. admonition:: Standalone scripts
  31. Custom management commands are especially useful for running standalone
  32. scripts or for scripts that are periodically executed from the UNIX crontab
  33. or from Windows scheduled tasks control panel.
  34. To implement the command, edit ``polls/management/commands/closepoll.py`` to
  35. look like this::
  36. from django.core.management.base import BaseCommand, CommandError
  37. from polls.models import Question as Poll
  38. class Command(BaseCommand):
  39. help = 'Closes the specified poll for voting'
  40. def add_arguments(self, parser):
  41. parser.add_argument('poll_id', nargs='+', type=int)
  42. def handle(self, *args, **options):
  43. for poll_id in options['poll_id']:
  44. try:
  45. poll = Poll.objects.get(pk=poll_id)
  46. except Poll.DoesNotExist:
  47. raise CommandError('Poll "%s" does not exist' % poll_id)
  48. poll.opened = False
  49. poll.save()
  50. self.stdout.write(self.style.SUCCESS('Successfully closed poll "%s"' % poll_id))
  51. .. _management-commands-output:
  52. .. note::
  53. When you are using management commands and wish to provide console
  54. output, you should write to ``self.stdout`` and ``self.stderr``,
  55. instead of printing to ``stdout`` and ``stderr`` directly. By
  56. using these proxies, it becomes much easier to test your custom
  57. command. Note also that you don't need to end messages with a newline
  58. character, it will be added automatically, unless you specify the ``ending``
  59. parameter::
  60. self.stdout.write("Unterminated line", ending='')
  61. The new custom command can be called using ``python manage.py closepoll
  62. <poll_id>``.
  63. The ``handle()`` method takes one or more ``poll_ids`` and sets ``poll.opened``
  64. to ``False`` for each one. If the user referenced any nonexistent polls, a
  65. :exc:`CommandError` is raised. The ``poll.opened`` attribute does not exist in
  66. the :doc:`tutorial</intro/tutorial01>` and was added to
  67. ``polls.models.Question`` for this example.
  68. .. _custom-commands-options:
  69. Accepting optional arguments
  70. ============================
  71. The same ``closepoll`` could be easily modified to delete a given poll instead
  72. of closing it by accepting additional command line options. These custom
  73. options can be added in the :meth:`~BaseCommand.add_arguments` method like this::
  74. class Command(BaseCommand):
  75. def add_arguments(self, parser):
  76. # Positional arguments
  77. parser.add_argument('poll_id', nargs='+', type=int)
  78. # Named (optional) arguments
  79. parser.add_argument(
  80. '--delete',
  81. action='store_true',
  82. dest='delete',
  83. default=False,
  84. help='Delete poll instead of closing it',
  85. )
  86. def handle(self, *args, **options):
  87. # ...
  88. if options['delete']:
  89. poll.delete()
  90. # ...
  91. The option (``delete`` in our example) is available in the options dict
  92. parameter of the handle method. See the :py:mod:`argparse` Python documentation
  93. for more about ``add_argument`` usage.
  94. In addition to being able to add custom command line options, all
  95. :doc:`management commands</ref/django-admin>` can accept some default options
  96. such as :option:`--verbosity` and :option:`--traceback`.
  97. .. _management-commands-and-locales:
  98. Management commands and locales
  99. ===============================
  100. By default, the :meth:`BaseCommand.execute` method deactivates translations
  101. because some commands shipped with Django perform several tasks (for example,
  102. user-facing content rendering and database population) that require a
  103. project-neutral string language.
  104. If, for some reason, your custom management command needs to use a fixed locale,
  105. you should manually activate and deactivate it in your
  106. :meth:`~BaseCommand.handle` method using the functions provided by the I18N
  107. support code::
  108. from django.core.management.base import BaseCommand, CommandError
  109. from django.utils import translation
  110. class Command(BaseCommand):
  111. ...
  112. def handle(self, *args, **options):
  113. # Activate a fixed locale, e.g. Russian
  114. translation.activate('ru')
  115. # Or you can activate the LANGUAGE_CODE # chosen in the settings:
  116. from django.conf import settings
  117. translation.activate(settings.LANGUAGE_CODE)
  118. # Your command logic here
  119. ...
  120. translation.deactivate()
  121. Another need might be that your command simply should use the locale set in
  122. settings and Django should be kept from deactivating it. You can achieve
  123. it by using the :data:`BaseCommand.leave_locale_alone` option.
  124. When working on the scenarios described above though, take into account that
  125. system management commands typically have to be very careful about running in
  126. non-uniform locales, so you might need to:
  127. * Make sure the :setting:`USE_I18N` setting is always ``True`` when running
  128. the command (this is a good example of the potential problems stemming
  129. from a dynamic runtime environment that Django commands avoid offhand by
  130. deactivating translations).
  131. * Review the code of your command and the code it calls for behavioral
  132. differences when locales are changed and evaluate its impact on
  133. predictable behavior of your command.
  134. Testing
  135. =======
  136. Information on how to test custom management commands can be found in the
  137. :ref:`testing docs <topics-testing-management-commands>`.
  138. Command objects
  139. ===============
  140. .. class:: BaseCommand
  141. The base class from which all management commands ultimately derive.
  142. Use this class if you want access to all of the mechanisms which
  143. parse the command-line arguments and work out what code to call in
  144. response; if you don't need to change any of that behavior,
  145. consider using one of its :ref:`subclasses<ref-basecommand-subclasses>`.
  146. Subclassing the :class:`BaseCommand` class requires that you implement the
  147. :meth:`~BaseCommand.handle` method.
  148. Attributes
  149. ----------
  150. All attributes can be set in your derived class and can be used in
  151. :class:`BaseCommand`’s :ref:`subclasses<ref-basecommand-subclasses>`.
  152. .. attribute:: BaseCommand.help
  153. A short description of the command, which will be printed in the
  154. help message when the user runs the command
  155. ``python manage.py help <command>``.
  156. .. attribute:: BaseCommand.missing_args_message
  157. If your command defines mandatory positional arguments, you can customize
  158. the message error returned in the case of missing arguments. The default is
  159. output by :py:mod:`argparse` ("too few arguments").
  160. .. attribute:: BaseCommand.output_transaction
  161. A boolean indicating whether the command outputs SQL statements; if
  162. ``True``, the output will automatically be wrapped with ``BEGIN;`` and
  163. ``COMMIT;``. Default value is ``False``.
  164. .. attribute:: BaseCommand.requires_migrations_checks
  165. A boolean; if ``True``, the command prints a warning if the set of
  166. migrations on disk don't match the migrations in the database. A warning
  167. doesn't prevent the command from executing. Default value is ``False``.
  168. .. attribute:: BaseCommand.requires_system_checks
  169. A boolean; if ``True``, the entire Django project will be checked for
  170. potential problems prior to executing the command. Default value is ``True``.
  171. .. attribute:: BaseCommand.leave_locale_alone
  172. A boolean indicating whether the locale set in settings should be preserved
  173. during the execution of the command instead of being forcibly set to 'en-us'.
  174. Default value is ``False``.
  175. Make sure you know what you are doing if you decide to change the value of
  176. this option in your custom command if it creates database content that
  177. is locale-sensitive and such content shouldn't contain any translations
  178. (like it happens e.g. with :mod:`django.contrib.auth` permissions) as
  179. making the locale differ from the de facto default 'en-us' might cause
  180. unintended effects. See the `Management commands and locales`_ section
  181. above for further details.
  182. .. attribute:: BaseCommand.style
  183. An instance attribute that helps create colored output when writing to
  184. ``stdout`` or ``stderr``. For example::
  185. self.stdout.write(self.style.SUCCESS('...'))
  186. See :ref:`syntax-coloring` to learn how to modify the color palette and to
  187. see the available styles (use uppercased versions of the "roles" described
  188. in that section).
  189. If you pass the :option:`--no-color` option when running your command, all
  190. ``self.style()`` calls will return the original string uncolored.
  191. Methods
  192. -------
  193. :class:`BaseCommand` has a few methods that can be overridden but only
  194. the :meth:`~BaseCommand.handle` method must be implemented.
  195. .. admonition:: Implementing a constructor in a subclass
  196. If you implement ``__init__`` in your subclass of :class:`BaseCommand`,
  197. you must call :class:`BaseCommand`’s ``__init__``::
  198. class Command(BaseCommand):
  199. def __init__(self, *args, **kwargs):
  200. super().__init__(*args, **kwargs)
  201. # ...
  202. .. method:: BaseCommand.add_arguments(parser)
  203. Entry point to add parser arguments to handle command line arguments passed
  204. to the command. Custom commands should override this method to add both
  205. positional and optional arguments accepted by the command. Calling
  206. ``super()`` is not needed when directly subclassing ``BaseCommand``.
  207. .. method:: BaseCommand.get_version()
  208. Returns the Django version, which should be correct for all built-in Django
  209. commands. User-supplied commands can override this method to return their
  210. own version.
  211. .. method:: BaseCommand.execute(*args, **options)
  212. Tries to execute this command, performing system checks if needed (as
  213. controlled by the :attr:`requires_system_checks` attribute). If the command
  214. raises a :exc:`CommandError`, it's intercepted and printed to stderr.
  215. .. admonition:: Calling a management command in your code
  216. ``execute()`` should not be called directly from your code to execute a
  217. command. Use :func:`~django.core.management.call_command` instead.
  218. .. method:: BaseCommand.handle(*args, **options)
  219. The actual logic of the command. Subclasses must implement this method.
  220. It may return a Unicode string which will be printed to ``stdout`` (wrapped
  221. by ``BEGIN;`` and ``COMMIT;`` if :attr:`output_transaction` is ``True``).
  222. .. method:: BaseCommand.check(app_configs=None, tags=None, display_num_errors=False)
  223. Uses the system check framework to inspect the entire Django project for
  224. potential problems. Serious problems are raised as a :exc:`CommandError`;
  225. warnings are output to stderr; minor notifications are output to stdout.
  226. If ``app_configs`` and ``tags`` are both ``None``, all system checks are
  227. performed. ``tags`` can be a list of check tags, like ``compatibility`` or
  228. ``models``.
  229. .. _ref-basecommand-subclasses:
  230. ``BaseCommand`` subclasses
  231. --------------------------
  232. .. class:: AppCommand
  233. A management command which takes one or more installed application labels as
  234. arguments, and does something with each of them.
  235. Rather than implementing :meth:`~BaseCommand.handle`, subclasses must
  236. implement :meth:`~AppCommand.handle_app_config`, which will be called once for
  237. each application.
  238. .. method:: AppCommand.handle_app_config(app_config, **options)
  239. Perform the command's actions for ``app_config``, which will be an
  240. :class:`~django.apps.AppConfig` instance corresponding to an application
  241. label given on the command line.
  242. .. class:: LabelCommand
  243. A management command which takes one or more arbitrary arguments (labels) on
  244. the command line, and does something with each of them.
  245. Rather than implementing :meth:`~BaseCommand.handle`, subclasses must implement
  246. :meth:`~LabelCommand.handle_label`, which will be called once for each label.
  247. .. attribute:: LabelCommand.label
  248. A string describing the arbitrary arguments passed to the command. The
  249. string is used in the usage text and error messages of the command.
  250. Defaults to ``'label'``.
  251. .. method:: LabelCommand.handle_label(label, **options)
  252. Perform the command's actions for ``label``, which will be the string as
  253. given on the command line.
  254. Command exceptions
  255. ------------------
  256. .. exception:: CommandError
  257. Exception class indicating a problem while executing a management command.
  258. If this exception is raised during the execution of a management command from a
  259. command line console, it will be caught and turned into a nicely-printed error
  260. message to the appropriate output stream (i.e., stderr); as a result, raising
  261. this exception (with a sensible description of the error) is the preferred way
  262. to indicate that something has gone wrong in the execution of a command.
  263. If a management command is called from code through
  264. :func:`~django.core.management.call_command`, it's up to you to catch the
  265. exception when needed.