Skip to content

Instantly share code, notes, and snippets.

@natiginfo
Last active March 2, 2022 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save natiginfo/cf62d9a89801ac9dcdb5f2ccaf48d292 to your computer and use it in GitHub Desktop.
Save natiginfo/cf62d9a89801ac9dcdb5f2ccaf48d292 to your computer and use it in GitHub Desktop.
import typer
def main(
city: str = typer.Option(..., prompt=True),
country: str = typer.Option(..., prompt=True)
):
# write some code
print(city, country)
if __name__ == "__main__":
typer.run(main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment