Glossary
-
What is Sphinx?
Sphinx is a tool that makes it easy to create documentation. It supports various output formats including
html, and has powerful extensions that to help keep your API documentation up to date. -
What is
reStructuredText?A plaintext markup syntax and parser.
reStructuredTextfiles use the extension.rst. Sphinx primarily parses.rstfiles and generates files in your target format (likehtml, or PDF). -
What is a
docstring?A string literal specified in source code that is used to document a specific segment of code. Usually follows a specific format parsable by various tools, including Sphinx.
-
What is PyPI?
PyPI (pronounced Pie-βPβ-βIβ) is the Python Package Index (docs). Itβs the default, global Python package mirror.