Metadata-Version: 2.4
Name: ballootify
Version: 0.1.0
Summary: A standalone module for displaying Windows balloon notifications
Author-email: Kameron Brooks <kameron@creation-wasteland.com>
Project-URL: Homepage, https://github.com/kameronbrooks/ballootify
Project-URL: Bug Tracker, https://github.com/kameronbrooks/ballootify/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Ballootify

A standalone module for displaying Windows balloon notifications using the Win32 API via ctypes. It enables system tray notifications without requiring external dependencies like 'win10toast' or PowerShell.

## Installation

```bash
pip install ballootify
```

## Usage

```python
from ballootify import notify_windows_balloon

notify_windows_balloon(
    title="Notification Title", 
    message="This is the message body.",
    timeout_ms=5000, 
    level="info"
)
```

## Features

- No external dependencies (uses `ctypes`).
- Win32 API integration.
- Supports Info, Warning, and Error icons.
