DEBSOURCES
Skip Quicknav
sources / typer / 0.19.2-1 / docs_src / launch / tutorial001.py
12345678910
import typer def main(): print("Opening Typer's docs") typer.launch("https://typer.tiangolo.com") if __name__ == "__main__": typer.run(main)