Coverage for docs_src/testing/app02_an/main.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-09 18:26 +0000

1import typer 1abcdefgh

2from typing_extensions import Annotated 1abcdefgh

3 

4app = typer.Typer() 1abcdefgh

5 

6 

7@app.command() 1abcdefgh

8def main(name: str, email: Annotated[str, typer.Option(prompt=True)]): 1abcdefgh

9 print(f"Hello {name}, your email is: {email}") 1abcdefgh

10 

11 

12if __name__ == "__main__": 1abcdefgh

13 app() 1abcdefgh