mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-10 03:13:14 -06:00
25 lines
473 B
Python
25 lines
473 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
It can be convenient to quickly generate a cli for a short script.
|
|
Or to add simple visualization of data using the wonderful rich library.
|
|
"""
|
|
|
|
__import__("viv").use("typer", "rich-click") # noqa
|
|
|
|
import typer
|
|
|
|
app = typer.Typer(add_completion=False)
|
|
|
|
|
|
@app.command()
|
|
def hello(name: str):
|
|
print(f"Hello {name}")
|
|
|
|
|
|
@app.command()
|
|
def goodbye(name: str, formal: bool = False):
|
|
print(f"Bye {name}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app()
|