Skip to main content

An MkDocs extension to generate documentation for Typer command line applications

Project description

mkdocs-typer

Tests Python versions Package version

An MkDocs extension to generate documentation for Typer command line applications.

Installation

Install from PyPI:

pip install mkdocs-typer

Quickstart

Add mkdocs-typer to Markdown extensions in your mkdocs.yml configuration:

site_name: Example
theme: readthedocs

markdown_extensions:
    - mkdocs-typer

Add a CLI application, e.g.:

# app/cli.py
import typer


my_app = typer.Typer()


@my_app.command()
def foo():
    """do something fooey"""


@my_app.callback()
def cli():
    """
    Main entrypoint for this dummy program
    """

Add a mkdocs-typer block in your Markdown:

# CLI Reference

This page provides documentation for our command line tools.

::: mkdocs-typer
    :module: app.cli
    :command: cli

Start the docs server:

mkdocs serve

Tada! 💫

Usage

Documenting commands

To add documentation for a command, add a mkdocs-typer block where the documentation should be inserted.

Example:

::: mkdocs-typer
    :module: app.cli
    :command: main

For all available options, see the Block syntax.

Multi-command support

When pointed at a group (or any other multi-command), mkdocs-typer will also generate documentation for sub-commands.

This allows you to generate documentation for an entire CLI application by pointing mkdocs-typer at the root command.

Tweaking header levels

By default, mkdocs-typer generates Markdown headers starting at <h1> for the root command section. This is generally what you want when the documentation should fill the entire page.

If you are inserting documentation within other Markdown content, you can set the :depth: option to tweak the initial header level. Note that this applies even if you are just adding a heading.

By default it is set to 0, i.e. headers start at <h1>. If set to 1, headers will start at <h2>, and so on. Note that if you insert your own first level heading and leave depth at its default value of 0, the page will have multiple <h1> tags, which is not compatible with themes that generate page-internal menus such as the ReadTheDocs and mkdocs-material themes.

Reference

Block syntax

The syntax for mkdocs-typer blocks is the following:

::: mkdocs-typer
    :module: <MODULE>
    :command: <COMMAND>
    :prog_name: <PROG_NAME>
    :depth: <DEPTH>

Options:

  • module: path to the module where the command object is located.
  • command: name of the command object.
  • prog_name: (Optional, default: same as command) the name to display for the command.
  • depth: (Optional, default: 0) Offset to add when generating headers.

Changelog

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

mkdocs_typer-0.0.3.tar.gz (11.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mkdocs_typer-0.0.3-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file mkdocs_typer-0.0.3.tar.gz.

File metadata

  • Download URL: mkdocs_typer-0.0.3.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for mkdocs_typer-0.0.3.tar.gz
Algorithm Hash digest
SHA256 4dd37f024190a82aaf0f6c984faafb15167d34eab7e29a6a85e61362423a4eb7
MD5 9558e9e7c3fc34cf6a205e42741c80f6
BLAKE2b-256 911ab2ac21a04c8e487a1fccc3982f9d91319b83a64c3fc3dc51d89658f43b57

See more details on using hashes here.

File details

Details for the file mkdocs_typer-0.0.3-py3-none-any.whl.

File metadata

  • Download URL: mkdocs_typer-0.0.3-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.17

File hashes

Hashes for mkdocs_typer-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b2a9a44da590a7100114fde4de9123fedfea692d229379984db20ee3b3f12d7c
MD5 deb2919e5dd2f1192701528f14c76bba
BLAKE2b-256 38344d6722b7cdb5e37474272205df6f2080ad01aff74570820a83dedb314f1b

See more details on using hashes here.

Supported by

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