68 lines
1.5 KiB
Python
68 lines
1.5 KiB
Python
from typing import Optional
|
|
|
|
from enum import Enum
|
|
from random import choice
|
|
|
|
import typer
|
|
from rich.console import Console
|
|
|
|
from internet_ml import version
|
|
from internet_ml.example import hello
|
|
|
|
|
|
class Color(str, Enum):
|
|
white = "white"
|
|
red = "red"
|
|
cyan = "cyan"
|
|
magenta = "magenta"
|
|
yellow = "yellow"
|
|
green = "green"
|
|
|
|
|
|
app = typer.Typer(
|
|
name="internet-ml",
|
|
help="Internet-ML: Allowing ML to connect to the internet",
|
|
add_completion=False,
|
|
)
|
|
console = Console()
|
|
|
|
|
|
def version_callback(print_version: bool) -> None:
|
|
"""Print the version of the package."""
|
|
if print_version:
|
|
console.print(f"[yellow]internet-ml[/] version: [bold blue]{version}[/]")
|
|
raise typer.Exit()
|
|
|
|
|
|
@app.command(name="")
|
|
def main(
|
|
name: str = typer.Option(..., help="Person to greet."),
|
|
color: Color
|
|
| None = typer.Option(
|
|
None,
|
|
"-c",
|
|
"--color",
|
|
"--colour",
|
|
case_sensitive=False,
|
|
help="Color for print. If not specified then choice will be random.",
|
|
),
|
|
print_version: bool = typer.Option(
|
|
None,
|
|
"-v",
|
|
"--version",
|
|
callback=version_callback,
|
|
is_eager=True,
|
|
help="Prints the version of the internet-ml package.",
|
|
),
|
|
) -> None:
|
|
"""Print a greeting with a giving name."""
|
|
if color is None:
|
|
color = choice(list(Color))
|
|
|
|
greeting: str = hello(name)
|
|
console.print(f"[bold {color}]{greeting}[/]")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app()
|