Class 4 - documentation
During class we covered how to write Python docstrings in Python code and how to use Sphinx to prepare Python package documentation. We started with this version of td_pathways
package and ended with the final version.
Topics covered:
- Using Sphinx quickstart to generate initial documentation.
- Manually using Sphinx directives from Python domain to document a function.
- Using
autodoc
extension to generate documentation of individual functions and classes. - Using
autodoc
extension to generate documentation of whole modules. - Creating narrative documentation with IPython extension.
- Creating narrative documentation with jupyter notebooks thanks to myst-nd parser.
- Using
intersphinx
extension to refer to objects from other packages on the internet.