Coverage for docs_src/subcommands/callback_override/tutorial004.py: 100%

14 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 default_callback(): 1iabcdefgh

7 print("Running a users command") 1iabcdefgh

8 

9 

10users_app = typer.Typer(callback=default_callback) 1iabcdefgh

11 

12 

13def callback_for_add_typer(): 1iabcdefgh

14 print("I have the high land! Running users command") 1iabcdefgh

15 

16 

17app.add_typer(users_app, name="users", callback=callback_for_add_typer) 1iabcdefgh

18 

19 

20@users_app.callback() 1iabcdefgh

21def user_callback(): 1abcdefgh

22 print("Callback override, running users command") 1iabcdefgh

23 

24 

25@users_app.command() 1iabcdefgh

26def create(name: str): 1iabcdefgh

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

28 

29 

30if __name__ == "__main__": 1iabcdefgh

31 app() 1iabcdefgh