Coverage for docs_src / parameter_types / number / tutorial001_an_py310.py: 100%
8 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-03-26 21:46 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-03-26 21:46 +0000
1from typing import Annotated 1abcdefg
3import typer 1abcdefg
5app = typer.Typer() 1abcdefg
8@app.command() 1abcdefg
9def main( 1abcdefg
10 id: Annotated[int, typer.Argument(min=0, max=1000)],
11 age: Annotated[int, typer.Option(min=18)] = 20,
12 score: Annotated[float, typer.Option(max=100)] = 0,
13):
14 print(f"ID is {id}") 1abcdefg
15 print(f"--age is {age}") 1abcdefg
16 print(f"--score is {score}") 1abcdefg
19if __name__ == "__main__": 1abcdefg
20 app() 1abcdefg