Skip to main content

Convert python docstring documentation to github markdown files

Project description

docmd

Generate api-style github markdown-files from python docstrings.

pip install docmd

Generate one file:

docmd my_module > README.md

Generate a whole folder full of documentation:

docmd my_module -out docs -url https://github.com/atakamallc/docmd/blob/master

docmd.docmd

Using docmd from python.

Example:

    from docmd import DocMd

    d = DocMd()
    mod = d.importlib("module")
    d.module_gen(mod)

DocMd(object)

Generator class for producing md files.

.__init__(self, output_dir=None, source_url=None, output_fh=None)

Construct a DocMd object:

Args:

  • output_dir: folder to write files to (optional)
  • source_url: url for making source links
  • output_fh: file handle to use if no output_dir is specified (sys.stdout)

.import_module(name)

Wrapper for importlib, in case we want to support more ways of specifying a module.

.module_gen(self, mod:module) -> str

Generate markdown, given an imported module with docstring comments.

Returns: name of the module generated.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

docmd-1.0.6-py3-none-any.whl (6.2 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