Coverage for docs_src / options_autocompletion / tutorial005_an_py310.py: 100%

11 statements  

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

1from typing import Annotated 1abcdefg

2 

3import typer 1abcdefg

4 

5valid_completion_items = [ 1abcdefg

6 ("Camila", "The reader of books."), 

7 ("Carlos", "The writer of scripts."), 

8 ("Sebastian", "The type hints guy."), 

9] 

10 

11 

12def complete_name(incomplete: str): 1abcdefg

13 for name, help_text in valid_completion_items: 1abcdefg

14 if name.startswith(incomplete): 1abcdefg

15 yield (name, help_text) 1abcdefg

16 

17 

18app = typer.Typer() 1abcdefg

19 

20 

21@app.command() 1abcdefg

22def main( 1abcdefg

23 name: Annotated[ 

24 str, typer.Option(help="The name to say hi to.", autocompletion=complete_name) 

25 ] = "World", 

26): 

27 print(f"Hello {name}") 1abcdefg

28 

29 

30if __name__ == "__main__": 1abcdefg

31 app() 1abcdefg