Coverage for docs_src / options_autocompletion / tutorial005_an_py39.py: 100%
11 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-02-09 12:36 +0000
1from typing import Annotated 1abcdefgh
3import typer 1abcdefgh
5valid_completion_items = [ 1abcdefgh
6 ("Camila", "The reader of books."),
7 ("Carlos", "The writer of scripts."),
8 ("Sebastian", "The type hints guy."),
9]
12def complete_name(incomplete: str): 1abcdefgh
13 for name, help_text in valid_completion_items: 1abcdefgh
14 if name.startswith(incomplete): 1abcdefgh
15 yield (name, help_text) 1abcdefgh
18app = typer.Typer() 1abcdefgh
21@app.command() 1abcdefgh
22def main( 1abcdefgh
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}") 1abcdefgh
30if __name__ == "__main__": 1abcdefgh
31 app() 1abcdefgh