Coverage for docs_src / options / name / tutorial005_py39.py: 100%

7 statements  

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

1import typer 1abcdefgh

2 

3app = typer.Typer() 1abcdefgh

4 

5 

6@app.command() 1abcdefgh

7def main( 1abcdefgh

8 name: str = typer.Option(..., "--name", "-n"), 

9 formal: bool = typer.Option(False, "--formal", "-f"), 

10): 

11 if formal: 1abcdefgh

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

13 else: 

14 print(f"Hello {name}") 1abcdefgh

15 

16 

17if __name__ == "__main__": 1abcdefgh

18 app() 1abcdefgh