Skip to content

Instantly share code, notes, and snippets.

@mmanylov-zz
Created February 17, 2021 22:01
Show Gist options
  • Save mmanylov-zz/0e5b396d6e950744cd650a0848aa3990 to your computer and use it in GitHub Desktop.
Save mmanylov-zz/0e5b396d6e950744cd650a0848aa3990 to your computer and use it in GitHub Desktop.
import click
@click.group()
def greet():
pass
@greet.command()
def hello(**kwargs):
pass
@greet.command()
def goodbye(**kwargs):
pass
if __name__ == '__main__':
greet()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment