Metadata-Version: 2.1
Name: pushoverwrap
Version: 0.1.2
Summary: A simple Pushover API wrapper.
Home-page: https://github.com/plutotree/pushoverwrap
Author: plutotree
Author-email: plutotreetree@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

pushoverwrap is a simple [Pushover](https://pushover.net) API wrapper.

# Installation

Install pushoverwrap using pip

```bash
pip install pushoverwrap
```

## Usage

The most simple example:

```python

from pushoverwrap import Pushover

push = Pushover(
    app_token='APP_TOKEN',
    user_token='USER_TOKEN',
)

push.send_msg('message content')

```

A more complex example, with title and image

```python
push.send_msg('message content',
    title='message title',
    image='local/path/image.jpeg'
)

```
