Metadata-Version: 2.1
Name: terminal_notifier
Version: 0.6
Summary: A package for notifying users about command execution in the terminal
Author: Anish Tipnis
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: plyer
Requires-Dist: playsound

# Terminal Notifier

Terminal Notifier is a Python package designed to provide simple notifications about command execution in the terminal environment. It offers the capability to display notifications and play sounds upon completion of commands, enhancing user experience and workflow.

## Installation

You can install Terminal Notifier via pip:

```bash
pip install terminal-notifier
```

## Usage
```
from terminal_notifier import notify_execution

notify_execution(scenario="success")
```

## Custom Messages
```
notify_execution(scenario="failure", custom_message="Command failed to execute!")
```





