hello

A simple CLI application that demonstrates modern Python development practices.

Command Line Usage

$ hello --help
Usage: hello [OPTIONS]                                                                                    
                                                                                                           
 Print a friendly greeting.                                                                                
                                                                                                           
                                                                                                           
╭─ Options ───────────────────────────────────────────────────────────────────────────────────────────────╮
│ --version                     Show version and exit                                                     │
│ --install-completion          Install completion for the current shell.                                 │
│ --show-completion             Show completion for the current shell, to copy it or customize the        │
│                               installation.                                                             │
│ --help                        Show this message and exit.                                               │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯

Docs Usage

For public repos (or private ones with enterprise subscriptions), you can enable github pages in settings and API docs will appear at https://{username}.github.io/{repo}/{package name}.html.

Docstrings on public functions get included in the docs. More on this here.

 1"""
 2A simple CLI application that demonstrates modern Python development practices.
 3
 4# Command Line Usage
 5
 6```
 7$ hello --help
 8Error running command: Command '['hello', '--help']' returned non-zero exit status 2.
 9```
10
11# Docs Usage
12
13For public repos (or private ones with enterprise subscriptions), you can enable github pages in *settings* and API docs will appear at [https://{username}.github.io/{repo}/{package name}.html](https://matrixmanatyrservice.github.io/hello-template/hello.html).
14
15Docstrings on public functions get included in the docs.
16More on this [here](https://pdoc.dev/docs/pdoc.html).
17"""
18
19# [[[cog
20# import os
21# version = os.environ.get("VERSION", "0.1.0-dev")
22# cog.out(f'__version__ = "{version}"')
23# ]]]
24__version__ = "0.1.0-dev202512170800"
25# [[[end]]]