Docstrings for data?
Is there a way to describe the module's data in a similar way that a docstring describes a module or a funcion?
class MyClass(object):
def my_function():
"""This docstring works!"""
return True
my_list = []
"""This docstring does not work!"""
Asked by: Kate211 | Posted: 28-01-2022
Answer 1
To my knowledge, it is not possible to assign docstrings to module data members.
PEP 224 suggests this feature, but the PEP was rejected.
I suggest you document the data members of a module in the module's docstring:
# module.py:
"""About the module.
module.data: contains the word "spam"
"""
data = "spam"
Answered by: Julian482 | Posted: 01-03-2022
Answer 2
It is possible to make documentation of module's data, with use of epydoc syntax. Epydoc is one of the most frequently used documentation tools for Python.
The syntax for documenting is #:
above the variable initialization line, like this:
# module.py:
#: Very important data.
#: Use with caution.
#: @type: C{str}
data = "important data"
Now when you generate your documentation, data
will be described as module variable with given description and type str
. You can omit the @type
line.
Answer 3
As codeape explains, it's not possible to document general data members.
However, it is possible to document property
data members:
class Foo:
def get_foo(self): ...
def set_foo(self, val): ...
def del_foo(self): ...
foo = property(get_foo, set_foo, del_foo, '''Doc string here''')
This will give a docstring to the foo
attribute, obviously.
Similar questions
How to fold long docstrings in python source code in VIM?
Does anybody know of a method, or perhaps a plugin, that will
automatically fold long docstrings in Python? I have docstrings in my
code that span several pages, so it is troublesome to keep paging
through them. The other tricky part is that there is embedded python
testing code in the docstrings, so that might make parsing them
difficult. Note that I only need to automatically fold the entire
docstr...
python - Avoid docstrings from parent, in Sphinx
I use Sphinx for autodocs, but I find it annoying how it by default appends the parent class docstring to my docstring.
The result is that for each and every documented test class inheriting from unittest.TestCase, I get the docstring "Create an instance of the class that will use the named test method when executed. Raises a ValueError if the instance does not have a method with the specified name...
python - Group method docstrings in sphinx
Is it possible to group several method docstrings with sphinx using it's autodoc capabilities, so that they are listed together?
class Test(object):
def a(self):
"""A method of group foo."""
def b(self):
"""A method of group bar."""
def c(self):
"""A method of group bar."""
def d(self):
"""A method of group foo."""
In the generated documen...
python - Pydoc not seeing docstrings?
Obviously I am missing something serious here. Here is my test program:
"""
Doc and nothing but doc
"""
class TestMe(object):
"""
class documentation goes here
"""
def testFunc(self):
"""
FunctionDoc Goes here
"""
print "Hello world"
if __name__ =="__main__":
t=TestMe()
t.testFunc()
I run it and it prints "Hello world", natch.
But ...
using :ref: in Python docstrings using Sphinx
I'm using Sphinx to document a python project, and I'm trying to create a reusable tip to be used in several locations.
Typically, I'll use the following syntax in a python file:
"""
.. tip::
I want this tip to be used in several locations. Why?
- Save time
- Work less
"""
Is there something like C#'s "see cref" in Python ReST docstrings?
I'm converting some C# code to Python 3, including documentation which is typically written as XML summaries in the original C# code.
Those summaries have references to class names as a <see cref="ClassName"/> element or <paramref name="fileName"/> elements for references to parameters, creating clickable links when converting it to HTML for example. I wonder if there's somethi...
python - Is it ok to put links in docstrings?
Say, for example, that I am writing a function based on a paper. Is it OK to put a link to the paper in the docstring? Or is this considered bad coding? I could imagine that being frowned upon by the Python community due to the fact that the link could break.
Regex to match Python docstrings
I would like to parse Python docstrings as follows:
Summary of class that is multiple lines.
Parameters
----------
param1 : str
Param 1 is a param
Returns
-------
value : str
Examples
--------
>>> print()
Maps to
{
'base': 'Summary of class that is multiple lines.',
'params': 'param1 : str\n\tParam 1 is a param',
'returns': 'value : str',
'examp...
syntax error - python docstrings
ok so I decided to learn python (perl, c, c++, java, objective-c, ruby and a bit of erlang and scala under my belt). and I keep on getting the following error when I try executing this:
Tue Jul 21{stevenhirsch@steven-hirschs-macbook-pro-2}/projects/python:-->./apache_logs.py
File "./apache_logs.py", line 17
print __doc__
^
SyntaxError: invalid syntax
#!/usr/local/bin/python
"""...
Python decorator handling docstrings
I have a problem using docstrings with decorators. Given the following example:
def decorator(f):
def _decorator():
print 'decorator active'
f()
return _decorator
@decorator
def foo():
'''the magic foo function'''
print 'this is function foo'
help(foo)
Now the help doesn't show me the docstring of foo as expected, it shows:
Hel...
Are Python docstrings and comments stored in memory when a module is loaded?
Are Python docstrings and comments stored in memory when a module is loaded?
I've wondered if this is true, because I usually document my code well; may this affect memory usage?
Usually every Python object has a __doc__ method. Are those docstrings read from the file, or processed otherwise?
I've done searches here in the forums, Google and...
How to fold long docstrings in python source code in VIM?
Does anybody know of a method, or perhaps a plugin, that will
automatically fold long docstrings in Python? I have docstrings in my
code that span several pages, so it is troublesome to keep paging
through them. The other tricky part is that there is embedded python
testing code in the docstrings, so that might make parsing them
difficult. Note that I only need to automatically fold the entire
docstr...
python - Using shorter textwidth in comments and docstrings
From the mighty PEP 8:
[P]lease limit all lines to a maximum of 79 characters. For flowing long blocks of text (docstrings or comments), limiting the length to 72 characters is recommended.
When editing Python code in Vim, I set my textwidth to 79, and Vim au...
python - Writing docstrings - specifying functions arguments and returns
Suppose I have a function, say:
>>> def foo(a):
return a+1
I want to write a documentation string for it.
what is the convention in specifying in the docstring that it takes a and returns a+1?
python - Is there a way to keep docstrings separate from the functions they document?
I'm working on a module with many small functions but whose docstrings tend to be quite long. The docstrings make working on the module irritating as I have to constantly scroll over a long docstring to find a little bit of actual code.
Is there a way to keep docstrings separate from the functions they document? I'd really like to be able to specify the docstrings at the end of the file away from the code or, even...
How do I change Emacs's font face for Python docstrings?
I'm just starting to learn Python and use Emacs as my editor. Currently, Emacs uses the same color for normal strings (single quotes) and docstrings (triple quotes). I want docstrings to be a different color, so I used the 'Options->Customize Emacs' menu option to change 'font-lock-doc-face' to a new color and saved the changes. However, Emacs continues to keep docstrings the same color as normal strings. Changing the ...
python - Put docstrings on special methods?
I'm trying to decide what information to put in the class docstring and what to put in the __init__ method docstring. Up until now I've been putting an overview of the class and how to work with it in the class docstring, while stuff directly related to initialization (argument details etc.) I put in the __init__ docstring.
Today I started wondering if this was the right way of doing it, s...
static analysis - How to calculate lines of code, comments and docstrings for a Python module?
Is there a tool or snippet that produces the following output in some form:
lines_of_code = 98
lines_of_comments = 24
lines_of_documentation = 11
NOTE 1: I will then try to feed this data to Jenkins to graph.
NOTE 2: I am aware that CLOC co...
Still can't find your answer? Check out these communities...
PySlackers | Full Stack Python | NHS Python | Pythonist Cafe | Hacker Earth | Discord Python