Metadata-Version: 2.4
Name: bitfrog
Version: 0.0.8
Summary: A Python API for Bitfrog notifications.
Project-URL: Homepage, https://github.com/kaighe/bitfrog-python
Project-URL: Issues, https://github.com/kaighe/bitfrog-python/issues
Author-email: Kai Albertson <kaialbertson@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: requests
Description-Content-Type: text/markdown

# Bitfrog Python API
*A Python API for easy push notifications through Bitfrog.*

**IMPORTANT**: Bitfrog has not been released yet, this package will not be useful until it has.

## Installation
```
pip install bitfrog
```

## Usage

```python
import bitfrog

bitfrog.notify("WOW so concise!", "XXXX-XXXX-XXXX-XXXX")
```

Or if you have many notifications and don't want to repeat the token;

```python
project = bitfrog.Project("XXXX-XXXX-XXXX-XXXX")
project.notify("Hello project!")

# Specify custom channel
channel = project.channel("Test Channel")
channel.notify("Finger lickin' good")
```