Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I document a constructor for a class using Python dataclasses?

I have some existing Python 3.6 code that I'd like to move to Python 3.7 dataclasses. I have __init__ methods with nice docstring documentation, specifying the attributes the constructors take and their types.

However, if I change these classes to use the new Python dataclasses in 3.7, the constructor is implicit. How do I provide constructor documentation in this case? I like the idea of dataclasses, but not if I have to forego clear documentation to use them.

edited to clarify I'm using docstrings presently

like image 369
anahata Avatar asked Jul 01 '18 17:07

anahata


People also ask

Can python Dataclasses have methods?

A dataclass can very well have regular instance and class methods. Dataclasses were introduced from Python version 3.7. For Python versions below 3.7, it has to be installed as a library.

What are Dataclasses in python?

dataclass module is introduced in Python 3.7 as a utility tool to make structured classes specially for storing data. These classes hold certain properties and functions to deal specifically with the data and its representation. Although the module was introduced in Python3.

How do you Docstring in python?

Declaring Docstrings: The docstrings are declared using ”'triple single quotes”' or “””triple double quotes””” just below the class, method or function declaration. All functions should have a docstring.

What is __ Post_init __ python?

The post-init function is an in-built function in python and helps us to initialize a variable outside the __init__ function. post-init function in python.


1 Answers

The napoleon-style docstrings as they are described in the sphinx docs (see the ExampleError class for their take on it) explicitly touch on your case:

The __init__ method may be documented in either the class level docstring, or as a docstring on the __init__ method itself.

And if you do not want this behavior, you have to explicitly tell sphinx that the constructor docstring and the class docstring are not the same thing.

Meaning, you can just paste your constructor info into the body of the class docstring.


In case you build documents from your docstrings, these are the granularities that can be achieved:

1) The bare minimum:

@dataclass class TestClass:     """This is a test class for dataclasses.      This is the body of the docstring description.     """     var_int: int     var_str: str 

enter image description here

2) Additional constructor parameter description:

@dataclass class TestClass:     """This is a test class for dataclasses.      This is the body of the docstring description.      Args:         var_int (int): An integer.         var_str (str): A string.      """     var_int: int     var_str: str 

enter image description here

3) Additional attribute description:

@dataclass class TestClass:     """This is a test class for dataclasses.      This is the body of the docstring description.      Attributes:         var_int (int): An integer.         var_str (str): A string.      """     var_int: int     var_str: str 

enter image description here


Parameter and attribute descriptions can of course be combined as well, but since dataclasses should be straight forward mappings I don't see a reason to do so.

In my opinion, 1) would do for small or simple dataclasses -- it already includes the constructor signature with their respective types, which is plenty for a dataclass. If you want to say more about each attribute, 3) would serve best.

like image 153
Arne Avatar answered Oct 06 '22 11:10

Arne