Дмитрий Косточко
Дмитрий Косточко
<chapter lang="ru" id="&BASEID;">
<title id="&BASEID;.title">Введение в Django</title>
<section id="&BASEID;.whatis">
<para>
Django является видным представителем нового поколения
<emphasis>сред разработки</emphasis>, но что же конкретно
подразумевают под этим термином?
</para>
</section>
</chapter>
Инструмент для создания документации на reStructuredText. C открытым исходным кодом. BSD лицензия. Построен на базе Docutils для документирования Python.
Облегчённый язык разметки. Используется в системе подготовки технической документации Docutils
Описание http://sphinx-doc.org/rest.html
=====================================
Writing your first Django app, part 1
=====================================
It'll consist of two parts:
* A public site that lets people view polls and vote in them.
* An admin site that lets you add, change and delete polls.
We'll assume you have :doc:`Django installed </intro/install>` already. You can tell Django is installed and which version by running the following command:
.. code-block:: bash
python -c "import django; print(django.get_version())"
.. py:function:: send_message(message, [priority=1])
Send a message to a recipient
:param str message: The body of the message
:param priority: The priority of the message, can be a number 1-5
:type priority: integer or None
:return: the message id
:raises ValueError: if the message exceeds 160 characters
:raises TypeError: if the message is not a basestrinдg
Генерация описания кода из docstrings.
.. automodule:: io
:members:
Можно ссылаться на описание функций из внешней документации.
:py:func:`io.open`
Создает с нуля документацию API используя docstrings.
$ sphinx-apidoc [options] -o outputdir packagedir [pathnames]
print(_("Hello! My name is %s.") % name)
#: src/main.py:36
msgid "Hello! My name is %s."
msgstr "Привет! Меня зовут %s."
Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0
: n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)
msgid "%d day ago"
msgid_plural "%d days ago"
msgstr[0] "%d день назад"
msgstr[1] "%d дня назад"
msgstr[2] "%d дней назад"
Хостинг документации для открытых проектов.
https://readthedocs.org/