Metadata-Version: 2.4
Name: hoy
Version: 1.0.6
Summary: A dead simple notifier.
Project-URL: Documentation, https://github.com/lezgomatt/hoy#readme
Project-URL: Issues, https://github.com/lezgomatt/hoy/issues
Project-URL: Source, https://github.com/lezgomatt/hoy
Author-email: Matthew Go <lezgomatt@gmail.com>
License-Expression: Zlib
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: zlib/libpng License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown

Hoy!  [![PyPI - Version](https://img.shields.io/pypi/v/hoy?style=flat-square)](https://pypi.org/project/hoy/)
====

A dead simple notifier.

Be informed when your scripts finish running!


Installation
------------

```bash
pipx install hoy
# or
uv tool install hoy
```


Usage
-----

Simply run `hoy` after a long-running process (example: `sleep 5`):

```bash
sleep 5; hoy
# Or if you want a custom message:
sleep 5; hoy "All clear, my dear!" # it'll also work without quotes
# Or if you want different messages for success and failure:
sleep 5; hoy $status # or `hoy $?` depending on your shell
# Or if you want a custom message again:
sleep 5 && hoy Success! || hoy Fail!
```
