Skip to content

SubCommands - Command GroupsΒΆ

You read before how to create a program with Commands.

Now we'll see how to create a CLI program with commands that have their own subcommands. Also known as command groups.

For example, the CLI program git has a command remote.

But git remote, in turn, has its own subcommands, like add:

fast β†’git remote
origin

git remote -v
origin git@github.com:yourusername/typer.git (fetch)
origin git@github.com:yourusername/typer.git (push)

git remote add upstream https://github.com/fastapi/typer.git

git remote -v
origin git@github.com:yourusername/typer.git (fetch)
origin git@github.com:yourusername/typer.git (push)
upstream https://github.com/fastapi/typer.git (fetch)
upstream https://github.com/fastapi/typer.git (push)

restart ↻

In the next sections we'll see how to create subcommands like these.

Was this page helpful?