-
Updated
Jun 3, 2022 - Python
#
docstrings
Here are 65 public repositories matching this topic...
API Documentation for Python Projects
python
api
documentation
docs
api-documentation
documentation-tool
python3
docstring
documentation-generator
docstrings
pdoc
Minor (New Feature)
Waiting for Assignee
This issue has been triaged as a good idea, waiting for a volunteer to implement
help wanted
good first issue
991jo
commented
Apr 4, 2022
-
Updated
May 28, 2022 - Python
Format and convert Python docstrings and generates patches
-
Updated
May 28, 2022 - Python
Visual Studio Code extension to quickly generate docstrings for python functions using AI(NLP) technology.
-
Updated
Nov 21, 2020 - Jupyter Notebook
The function is a block of code defined with a name. We use functions whenever we need to perform the same task multiple times without writing the same code again. It can take arguments and returns the value.
anonymous-functions
recursive-functions
math-functions
python-functions
builtin-functions
docstrings
python4beginner
built-in-functions
random-module
userdefined-functions
python-tutorial-notebook
python-tutor
lamda-functions
functions-python
python4everybody
python-tutorial-github
python4datascience
global-local-nonlocal
functional-arguments
tutor-milaan9
-
Updated
May 15, 2022 - Jupyter Notebook
Preprocessed Python functions and docstrings for automated code documentation (code2doc) and automated code generation (doc2code) tasks.
-
Updated
Jul 13, 2020 - Python
dduan
commented
Feb 8, 2020
A common-ish mistake for docstring author is to use the label of a parameter as opposed to the actual name. The error message in this scenario could be improved. Right now the parameter docstring is reported as missing. It could be something like "Parameter label (X) is used instead of name (Y)".
A rewrite of Python's builtin doctest module (with pytest plugin integration) with AST instead of REGEX.
-
Updated
May 6, 2022 - Python
Integration of pydocstyle and flake8 for combined linting and reporting
-
Updated
May 9, 2022 - Python
-
Updated
May 2, 2022 - Python
Sublime Text DocBlockr for python. Simplifies writing docstring comments in Python.
-
Updated
May 28, 2021 - Python
Python 代码风格指南 & 编程规范
python
style-guide
layout
conventions
naming-conventions
pep8
docstrings
myclass
coding-specification
-
Updated
Jun 3, 2017
Load Python objects documentation.
python
documentation
introspection
signatures
docstrings
python-documentation
mkdocstrings-collector
-
Updated
Mar 30, 2022 - Python
Modern, declarative argument parser for Python 3.6+
cli
command-line
argument-parser
declarative
argument-parsing
argparse
option-parser
automagic
command-line-parser
commandline-interface
docstrings
option-parsing
declarative-parser
-
Updated
Apr 9, 2018 - Python
Insert NumPy style docstrings in Python functions.
-
Updated
Mar 4, 2022 - Emacs Lisp
PowerApps-docstring is a console based, pipeline ready application that automatically generates user and technical documentation for Power Apps.
-
Updated
Mar 16, 2022 - Python
Visual Studio Code client for Trelent
-
Updated
May 30, 2022 - TypeScript
A compact cheat sheet for writing documentation string for Sphinx, with focus on Python.
-
Updated
Jun 15, 2018
Some useful decorators for any situation. Includes runtime type checking.
python
testing
typechecker
validation
decorators
annotations
typing
type-safety
type-checking
python-decorators
docstring
type-hints
docstrings
pedantic
pedantic-decorators
-
Updated
Jun 1, 2022 - Python
This is a sphinx extension which improves the documentation of Django apps.
-
Updated
Jan 5, 2022 - Python
PhilipMay
commented
Jul 7, 2021
The constructor should be documented at class level and not at the init function.
Python module that makes working with Sphinx Docstring feel like you are working with JSON
-
Updated
Jul 14, 2016 - Python
Create argparser automatically from py3.6+ annotations 🐍 .
-
Updated
Apr 6, 2022 - Python
Update or convert docstring style formats in Python code.
-
Updated
Jul 11, 2020 - Python
Python CLI using type hints and docstrings.
-
Updated
Apr 8, 2022 - Python
Improve this page
Add a description, image, and links to the docstrings topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the docstrings topic, visit your repo's landing page and select "manage topics."
My problem
I document my class initialization inside the class docstring, therefore pydocstyle complains about undocumented
__init__methods.My solution idea
It would be great to have the ability to have a flag (for example
--ignore-func) that would work for both functions, classes and class methods with maybe a regex. So for ignoring the__init__the flag could be ``--ignore-fu