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

6 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-03-26 21:46 +0000

1import typer 1abcdefg

2 

3app = typer.Typer() 1abcdefg

4 

5 

6@app.command() 1abcdefg

7def main( 1abcdefg

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.") 1abcdefg

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

15 

16 

17if __name__ == "__main__": 1abcdefg

18 app() 1abcdefg