Coverage for docs_src/options_autocompletion/tutorial008_an.py: 100%
16 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-19 20:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-19 20:29 +0000
1from typing import List 1abcdefghi
3import typer 1abcdefghi
4from rich.console import Console 1abcdefghi
5from typing_extensions import Annotated 1abcdefghi
7valid_completion_items = [ 1abcdefghi
8 ("Camila", "The reader of books."),
9 ("Carlos", "The writer of scripts."),
10 ("Sebastian", "The type hints guy."),
11]
13err_console = Console(stderr=True) 1abcdefghi
16def complete_name(args: List[str], incomplete: str): 1abcdefghi
17 err_console.print(f"{args}") 1abcdefghi
18 for name, help_text in valid_completion_items: 1abcdefghi
19 if name.startswith(incomplete): 1abcdefghi
20 yield (name, help_text) 1abcdefghi
23app = typer.Typer() 1abcdefghi
26@app.command() 1abcdefghi
27def main( 1abcdefghi
28 name: Annotated[
29 List[str],
30 typer.Option(help="The name to say hi to.", autocompletion=complete_name),
31 ] = ["World"],
32):
33 for n in name: 1abcdefghi
34 print(f"Hello {n}") 1abcdefghi
37if __name__ == "__main__": 1abcdefghi
38 app() 1abcdefghi