Enum - Choices
To define a CLI parameter that can take a value from a predefined set of values you can use a standard Python enum.Enum
:
from enum import Enum
import typer_cloup as typer
class NeuralNetwork(str, Enum):
simple = "simple"
conv = "conv"
lstm = "lstm"
def main(network: NeuralNetwork = NeuralNetwork.simple):
typer.echo(f"Training neural network of type: {network.value}")
if __name__ == "__main__":
typer.run(main)
Tip
Notice that the function parameter network
will be an Enum
, not a str
.
To get the str
value in your function's code use network.value
.
Check it:
Case insensitive Enum choicesΒΆ
You can make an Enum
(choice) CLI parameter be case-insensitive with the case_sensitive
parameter:
from enum import Enum
import typer_cloup as typer
class NeuralNetwork(str, Enum):
simple = "simple"
conv = "conv"
lstm = "lstm"
def main(
network: NeuralNetwork = typer.Option(NeuralNetwork.simple, case_sensitive=False)
):
typer.echo(f"Training neural network of type: {network.value}")
if __name__ == "__main__":
typer.run(main)
And then the values of the Enum
will be checked no matter if lower case, upper case, or a mix: