How to use the pdoc.html_package_name function in pdoc

To help you get started, we’ve selected a few pdoc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ladybug-tools / honeybee / updatedoc.py View on Github external
def module_file(m, html_dir):
    mbase = path.join(html_dir, *m.name.split('.'))
    if m.is_package():
        return path.join(mbase, pdoc.html_package_name)
    else:
        return '%s%s' % (mbase, pdoc.html_module_suffix)
github scikit-optimize / scikit-optimize / build_tools / travis / make_doc.py View on Github external
def module_file(m):
    mbase = path.join(args.html_dir, *m.name.split('.'))
    if m.is_package():
        return path.join(mbase, pdoc.html_package_name)
    else:
        return '%s%s' % (mbase, pdoc.html_module_suffix)

pdoc

API Documentation for Python Projects

Unlicense
Latest version published 4 months ago

Package Health Score

85 / 100
Full package analysis