This document describes the current stable version of Celery (5.2). For development docs, go here.
celery.contrib.sphinx¶
Sphinx documentation plugin used to document tasks.
Introduction¶
Usage¶
The Celery extension for Sphinx requires Sphinx 2.0 or later.
Add the extension to your docs/conf.py
configuration module:
extensions = (...,
'celery.contrib.sphinx')
If you’d like to change the prefix for tasks in reference documentation
then you can change the celery_task_prefix
configuration value:
celery_task_prefix = '(task)' # < default
With the extension installed autodoc will automatically find
task decorated objects (e.g. when using the automodule directive)
and generate the correct (as well as add a (task)
prefix),
and you can also refer to the tasks using :task:proj.tasks.add
syntax.
Use .. autotask::
to alternatively manually document a task.
- class celery.contrib.sphinx.TaskDirective(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)[source]¶
Sphinx task directive.
- class celery.contrib.sphinx.TaskDocumenter(directive: DocumenterBridge, name: str, indent: str = '')[source]¶
Document task definitions.
- classmethod can_document_member(member, membername, isattr, parent)[source]¶
Called to see if a member can be documented by this Documenter.
- document_members(all_members=False)[source]¶
Generate reST for member documentation.
If all_members is True, document all members, else those given by self.options.members.
- format_args()[source]¶
Format the argument signature of self.object.
Should return None if the object does not have a signature.
- member_order = 11¶
order if autodoc_member_order is set to ‘groupwise’
- objtype = 'task'¶
name by which the directive is called (auto…) and the default generated directive name