Metadata-Version: 2.1
Name: pyshover
Version: 0.0.4
Summary: Quickly send Pushover messages
Author: Scott Walsh
Author-email: scott@invisiblethreat.ca
Maintainer: Scott Walsh
Maintainer-email: scott@invisiblethreat.ca
Project-URL: homepage, https://github.com/invisiblethreat/pyshover
Project-URL: documentation, https://github.com/invisiblethreat/pyshover/blob/main/README.md
Project-URL: repository, https://github.com/invisiblethreat/pyshover
Keywords: pushover,notifications
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# pyshover

A simple Pushover client

Install:

Library: `pip install pyshover`
Script: `pipx install pyshover`


Sample Usage:

```python
from pushover import Pushover

po = Pushover(app_token="fake", user_token="fake", message="message",title="title")
po.send()
```

Make the call more simple by exporting `PUSHOVER_USER_TOKEN`,
`PUSHOVER_APP_TOKEN`, and, optionally, `PUSHOVER_DEVICE_TOKEN`

```python
from pushover import Pushover

po = Pushover(message="message",title="title")
po.send()
```

### Lineage

- <https://github.com/pix0r/pushover>
- <https://github.com/wyattjoh/pushover>
- This repo. There is most definitely no compatibility with previous repos now

## Shell script

### Installing with `pipx`

`pipx install pyshover` will leave you with an isolated binary called `pushover`

Confirm your install with `pipx list` or `which pushover`

For CLI arguments, use `pushover -h`
