An open API service indexing awesome lists of open source software.

https://github.com/andrewpetrochenkov/growlnotify.py

:bell: growlnotify (Growl.app cli) python wrapper
https://github.com/andrewpetrochenkov/growlnotify.py

macos python

Last synced: 2 months ago
JSON representation

:bell: growlnotify (Growl.app cli) python wrapper

Awesome Lists containing this project

README

          

[![](https://img.shields.io/pypi/v/growlnotify.svg?maxAge=3600)](https://pypi.org/project/growlnotify/)
[![](https://img.shields.io/badge/License-Unlicense-blue.svg?longCache=True)](https://unlicense.org/)
[![](https://github.com/andrewp-as-is/growlnotify.py/workflows/tests42/badge.svg)](https://github.com/andrewp-as-is/growlnotify.py/actions)

### Installation
```bash
$ [sudo] pip install growlnotify
```

#### Examples
```python
>>> import growlnotify
>>> growlnotify.notify(t="title",m="message") # -t "title" -m "message"
>>> growlnotify.notify(title="title",message="message") # --title "title" --message "message"
```

`-s`, `--sticky`
```python
>>> growlnotify.notify(title="title",s=True) # -s
>>> growlnotify.notify(title="title",sticky=True) # --sticky
```

growlnotify keys
```bash
$ growlnotify --help
```

#### Links
+ [growl.info](http://growl.info/)


readme42.com