Coverage for docs_src / options / password / tutorial002_py39.py: 100%

6 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, 

9 password: str = typer.Option( 

10 ..., prompt=True, confirmation_prompt=True, hide_input=True 

11 ), 

12): 

13 print(f"Hello {name}. Doing something very secure with password.") 1abcdefgh

14 print(f"...just kidding, here it is, very insecure: {password}") 1abcdefgh

15 

16 

17if __name__ == "__main__": 1abcdefgh

18 app() 1abcdefgh