import typer app = typer.Typer() @app.command() def scrape_book(url: str): """ Function used to create scrape request to Server """ @app.command() def goodbye(name: str, formal: bool = False): """ function2 """ if formal: typer.echo(f"Goodbye Ms. {name}. Have a good day.") else: typer.echo(f"Bye {name}!") if __name__ == "__main__": app()