Properly-written documentation is essential for nearly any information science undertaking because it enhances readability, facilitates collaboration, and ensures reproducibility. Clear and concise documentation gives context for the undertaking’s aims, methodologies, and findings, making it simpler for different workforce members (particularly, newbies) and stakeholders to grasp the that means behind work executed. Moreover, documentation serves as a reference for future enhancements or troubleshooting, decreasing time spent on re-explaining and even refreshing the principle ideas.
Sounds engaging, isn’t it? However have you learnt you can create purposeful documentation through Sphinx documentation device in a constant fashion just by utilizing docstrings? When you don’t know an excessive amount of about Sphinx’s performance but, this put up may also help you to determine it out.
Few phrases about docstrings
Docstrings are the remark blocks that seem in any class, class methodology, and performance throughout the code.Three principal docstring codecs are formally supported through Sphinx: Google [1], NumPy [2], and reStructuredText (reST) [3]. Which one to decide on is as much as you, however on this put up I’ll work with the reST format, due to its versatility.
On this article, I’ll introduce you to a few most spectacular functionalities of Sphinx’s device, which may robotically generate documentation for Python modules. Earlier than contemplating these three instances I assume that you simply’ve already created a documentation listing and put in Sphinx in your machine. If not, please, learn the TDS article on the way to set up and arrange Sphinx first [4].
After putting in Sphinx, create a brand new Sphinx undertaking by command sphinx-quickstart
. Observe the prompts to arrange your undertaking. This can populate your listing with a number of information, together with conf.py
and index.rst
.
Case 1. Use cross-references for fast navigation
Based on the official web site of Sphinx, one in all its most helpful options is creating computerized cross-references by means of semantic cross-referencing roles. Cross-references can be utilized to hyperlink to features, lessons, modules, and even sections inside your documentation.
For example, the cross reference to an object description, reminiscent of :func:`.identify`
, will create a hyperlink to the place the place identify()
is documented.
Let’s look at how it’s in follow. Think about that we now have a easy Python module referred to as mymodule.py
with two primary features inside.
First perform is about summing two numbers:
def add(a: int, b: int) -> int:
"""
Add two numbers.
:param a: First quantity.
:param b: Second quantity.
:return: Sum of a and b.
"""
return a + b
Second is about subtracting one quantity from the opposite:
def subtract(c: int, d: int) -> int:
"""
Subtract two numbers.
:param c: First quantity.
:param d: Second quantity.
:return: Subtracting d from c.
"""
return c - d
It’s attainable to make use of :func:
to create cross-references to those two features throughout the documentation (:func:.add
, :func:.subtract
). Let’s create one other file (principal.py
), which can use the features from mymodule.py
. You possibly can add docstrings right here if you wish to doc this file as properly:
from mymodule import add, subtract
def principal():
"""
Essential perform to display the usage of two features.
It makes use of :func:`.add` and :func:`.subtract` features from mymodule.py.
"""
# Name the primary perform
first = add(2,3)
print(first)
# Name the second perform
second = subtract(9,8)
print(second)
if __name__ == "__main__":
principal()
To robotically generate documentation out of your code, you possibly can allow the autodoc extension in your conf.py
file. Add 'sphinx.ext.autodoc'
to the extensions record:
extensions = ['sphinx.ext.autodoc']
Be certain that to incorporate the trail to your module in order that Sphinx can discover it. Add the next strains on the prime of conf.py
:
import os
import sys
sys.path.insert(0, os.path.abspath('../src')) # mymodule.py and principal.py are positioned in src folder in documentation listing
Then we have to generate .rst
information of our Python packages. They’re Sphinx’s personal format and should be generated earlier than making HTML-files. It’s quicker to make use of the apidoc
command to take care of .rst
. Run within the terminal:
sphinx-apidoc -o supply src
Right here -o supply
defines the listing to put the output information, and src
units the placement of Python modules we have to describe. After working this command, newly generated .rst
information will seem in your folder.
Lastly, navigate to your documentation’s folder and run:
make html
This can generate HTML documentation within the _build/html
listing. Open the generated HTML information in an internet browser. You must see your documentation with cross-references to the add and subtract features:
Click on right here on the perform names and you can be taken to a web page with their description:

Case 2. Add hyperlinks to exterior assets
Along with the power to insert cross-references, Sphinx permits you to add hyperlinks to exterior assets. Beneath is an instance of how one can create a perform in mymodule.py
file that makes use of the built-in abs()
perform to display the way it’s attainable so as to add a hyperlink to the official Python documentation in its docstrings:
def calculate_distance(point1, point2):
"""
Calculate the gap between two factors in a 2D area.
This perform makes use of the built-in `abs()` perform to compute absolutely the
variations within the x and y coordinates of the 2 factors.
For extra particulars, see the official Python documentation for `abs()`:
`abs() `_.
"""
a, b = point1
c, d = point2
# Calculate the variations in x and y coordinates
delta_x = abs(c - a)
delta_y = abs(d - b)
# Calculate the Euclidean distance utilizing the Pythagorean theorem
distance = (delta_x**2 + delta_y**2) ** 0.5
return distance
Operating make html
command for this case present you the next output:

Case 3. Create particular directives and examples for higher visible results
In Sphinx you possibly can create brief paragraphs with completely different admonitions, messages, and warnings, in addition to with concrete examples of obtained outcomes. Let’s enrich our module with a word directive and instance.
def calculate_distance(point1, point2):
"""
Calculate the gap between two factors in a 2D area.
This perform makes use of the built-in `abs()` perform to compute absolutely the
variations within the x and y coordinates of the 2 factors.
For extra particulars, see the official Python documentation for `abs()`:
`abs() `_.
Instance:
>>> calculate_distance((1, 2), (4, 6))
5.0
.. word::
There's a perform that calculates the Euclidean distance immediately - `math.hypot() `_.
"""
a, b = point1
c, d = point2
# Calculate the variations in x and y coordinates
delta_x = abs(c - a)
delta_y = abs(d - b)
# Calculate the Euclidean distance utilizing the Pythagorean theorem
distance = (delta_x**2 + delta_y**2) ** 0.5
return distance
And the ensuing HTML web page appears as follows:

Subsequently, for including any instance throughout the docstrings you must use >>>
. And to specify a word there, simply use .. word::
. An excellent factor is that you simply would possibly add hyperlinks to exterior assets contained in the word.
Conclusion
Thorough documentation permits others not solely to higher perceive the topic of studying, however to deeply work together with it, which is crucial for technical and scientific documentation. Total, good documentation promotes environment friendly data switch and helps preserve the undertaking’s longevity, in the end contributing to its success and impression.
On this put up we thought of the way to create a easy, but well-written documentation utilizing Sphinx documentation device. Not solely did we discover ways to create a Sphinx undertaking from scratch, but additionally realized the way to use its performance, together with cross-references, hyperlinks to exterior assets, and particular directives. Hope, you discovered this data useful for your self!
Notice: all photographs within the article have been made by writer.
References
[1] Google Python Type Information: https://google.github.io/styleguide/pyguide.html make html
[2] NumPy Type Information: https://numpydoc.readthedocs.io/en/latest/format.html
[3] reStructuredText Type Information: https://docutils.sourceforge.io/rst.html
[4] Submit “Step by Step Fundamentals: Code Autodocumentation”: https://towardsdatascience.com/step-by-step-basics-code-autodocumentation-fa0d9ae4ac71
[5] Official web site of Sphinx documentation device: https://www.sphinx-doc.org/en/master/