Skip to main content

Auto generate docstring from type-hints.

Project description

docstring_generator

Auto generate docstring from type-hints for python functions and class methods.

How to use it

gendocs_new file.py
gendocs_new mydir/

Options

style

  • --style
  • Docstring style [numpy, google, rest]. [default: numpy]

Add additional information before running gendocs_new

  • when adding $<num> into your docstring these will then be replaced with parameter at this index
  • Example:
from typing import List


def foo(val_a: int, val_b: List[int]):
    """
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
    sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam

    $1 Lorem ipsum dolor sit amet
    $2 nonumy eirmod tempor invidun
    """

will become (here with numpy style)

from typing import List


def foo(val_a: int, val_b: List[int]):
    """
    Lorem ipsum dolor sit amet, consetetur sadipscing elitr,
    sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
    
    Parameters
    ----------
    val_a : argument of type int
        Lorem ipsum dolor sit amet
    val_b : argument of type List(int)
        nonumy eirmod tempor invidun

    """

FAQ

what happens if I re-run the docstring creation?

  • nothing if all stays the same, changed parameter descriptions will be ignored only changes of the function header will be used

Examples

  • An example can be found under examples

Installing

  • pip install docstring-generator

Versioning

  • For the versions available, see the tags on this repository.

Support for older version

  • the previous command gendocs is still supported for this version.

Authors

  • Felix Eisenmenger

License

  • This project is licensed under the MIT License - see the LICENSE.md file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

docstring-generator-0.3.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

docstring_generator-0.3.1-py3-none-any.whl (3.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page