Python Docstrings
There are two common styles for writing python docstrings:
Sphinx
def hello(name, language="en"):
"""Say hello to a person.
:param name: the name of the person
:type name: str
:param language: the language in which the person should be greeted
:...
frankeffect.hashnode.dev1 min read