Coverage for docs_src/options_autocompletion/tutorial007.py: 100%
13 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-04-14 00:18 +0000
1from typing import List 1iabcdefgh
3import typer 1iabcdefgh
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(ctx: typer.Context, incomplete: str): 1iabcdefgh
13 names = ctx.params.get("name") or [] 1iabcdefgh
14 for name, help_text in valid_completion_items: 1iabcdefgh
15 if name.startswith(incomplete) and name not in names: 1iabcdefgh
16 yield (name, help_text) 1iabcdefgh
19app = typer.Typer() 1iabcdefgh
22@app.command() 1iabcdefgh
23def main( 1abcdefgh
24 name: List[str] = typer.Option(
25 ["World"], help="The name to say hi to.", autocompletion=complete_name
26 ),
27):
28 for n in name: 1iabcdefgh
29 print(f"Hello {n}") 1iabcdefgh
32if __name__ == "__main__": 1iabcdefgh
33 app() 1iabcdefgh