Skip to content

CLI Arguments with Environment VariablesΒΆ

You can also configure a CLI argument to read a value from an environment variable if it is not provided in the command line as a CLI argument.

Tip

You can learn more about environment variables in the Environment Variables page.

To do that, use the envvar parameter for typer.Argument():

import typer
from typing_extensions import Annotated


def main(name: Annotated[str, typer.Argument(envvar="AWESOME_NAME")] = "World"):
    print(f"Hello Mr. {name}")


if __name__ == "__main__":
    typer.run(main)
πŸ€“ Other versions and variants

Tip

Prefer to use the Annotated version if possible.

import typer


def main(name: str = typer.Argument("World", envvar="AWESOME_NAME")):
    print(f"Hello Mr. {name}")


if __name__ == "__main__":
    typer.run(main)

In this case, the CLI argument name will have a default value of "World", but will also read any value passed to the environment variable AWESOME_NAME if no value is provided in the command line:

fast β†’python main.py --help
Usage: main.py [OPTIONS] [NAME]

Arguments:
[NAME] [env var: AWESOME_NAME;default: World]

Options:
--help Show this message and exit.

python main.py
Hello Mr. World

python main.py Czernobog
Hello Mr. Czernobog

AWESOME_NAME=Wednesday python main.py
Hello Mr. Wednesday

AWESOME_NAME=Wednesday python main.py Czernobog
Hello Mr. Czernobog

restart ↻

Multiple environment variablesΒΆ

You are not restricted to a single environment variable, you can declare a list of environment variables that could be used to get a value if it was not passed in the command line:

import typer
from typing_extensions import Annotated


def main(
    name: Annotated[str, typer.Argument(envvar=["AWESOME_NAME", "GOD_NAME"])] = "World",
):
    print(f"Hello Mr. {name}")


if __name__ == "__main__":
    typer.run(main)
πŸ€“ Other versions and variants

Tip

Prefer to use the Annotated version if possible.

import typer


def main(name: str = typer.Argument("World", envvar=["AWESOME_NAME", "GOD_NAME"])):
    print(f"Hello Mr. {name}")


if __name__ == "__main__":
    typer.run(main)

Check it:

fast β†’python main.py --help
Usage: main.py [OPTIONS] [NAME]

Arguments:
[NAME] [env var: AWESOME_NAME, GOD_NAME;default: World]

Options:
--help Show this message and exit.

AWESOME_NAME=Wednesday python main.py
Hello Mr. Wednesday

GOD_NAME=Anubis python main.py
Hello Mr. Anubis

restart ↻

Hide an env var from the help textΒΆ

By default, environment variables used will be shown in the help text, but you can disable them with show_envvar=False:

import typer
from typing_extensions import Annotated


def main(
    name: Annotated[
        str, typer.Argument(envvar="AWESOME_NAME", show_envvar=False)
    ] = "World",
):
    print(f"Hello Mr. {name}")


if __name__ == "__main__":
    typer.run(main)
πŸ€“ Other versions and variants

Tip

Prefer to use the Annotated version if possible.

import typer


def main(name: str = typer.Argument("World", envvar="AWESOME_NAME", show_envvar=False)):
    print(f"Hello Mr. {name}")


if __name__ == "__main__":
    typer.run(main)

Check it:

fast β†’//Check the helppython main.py --help
Usage: main.py [OPTIONS] [NAME]

Arguments:
[NAME] [default: World]

Options:
--help Show this message and exit.

AWESOME_NAME=Wednesday python main.py
Hello Mr. Wednesday

restart ↻

Technical Details

In Click applications the env vars are hidden by default. πŸ™ˆ

In Typer these env vars are shown by default. πŸ‘€

Was this page helpful?