Typer
https://typer.tiangolo.com/
Simplest CLI
import typer
def main(name: str):
print(f"Hello {name}")
if __name__ == "__main__":
typer.run(main)Hierarchical CLI (multiple entrypoints)
Unexpected error with integration github-files: Internal Server Error
Save Config Files
Last updated