Coverage for docs_src/subcommands/name_help/tutorial007.py: 100%

11 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2025-04-14 00:18 +0000

1import typer 1iabcdefgh

2 

3app = typer.Typer() 1iabcdefgh

4 

5 

6def old_callback(): 1iabcdefgh

7 """ 

8 Old callback help. 

9 """ 

10 

11 

12users_app = typer.Typer(callback=old_callback, name="users", help="Explicit help.") 1iabcdefgh

13 

14 

15def new_users(): 1iabcdefgh

16 """ 

17 I have the highland! Create some users. 

18 """ 

19 

20 

21app.add_typer(users_app, callback=new_users) 1iabcdefgh

22 

23 

24@users_app.callback(help="Help from callback for users.") 1iabcdefgh

25def users(): 1abcdefgh

26 """ 

27 Manage users in the app. 

28 """ 

29 

30 

31@users_app.command() 1iabcdefgh

32def create(name: str): 1iabcdefgh

33 print(f"Creating user: {name}") 1iabcdefgh

34 

35 

36if __name__ == "__main__": 1iabcdefgh

37 app() 1iabcdefgh