Coverage for docs_src / options / help / tutorial001_an_py39.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-02-09 12:36 +0000

1from typing import Annotated 1abcdefgh

2 

3import typer 1abcdefgh

4 

5app = typer.Typer() 1abcdefgh

6 

7 

8@app.command() 1abcdefgh

9def main( 1abcdefgh

10 name: str, 

11 lastname: Annotated[str, typer.Option(help="Last name of person to greet.")] = "", 

12 formal: Annotated[bool, typer.Option(help="Say hi formally.")] = False, 

13): 

14 """ 

15 Say hi to NAME, optionally with a --lastname. 

16 

17 If --formal is used, say hi very formally. 

18 """ 

19 if formal: 1abcdefgh

20 print(f"Good day Ms. {name} {lastname}.") 1abcdefgh

21 else: 

22 print(f"Hello {name} {lastname}") 1abcdefgh

23 

24 

25if __name__ == "__main__": 1abcdefgh

26 app() 1abcdefgh