Metadata-Version: 2.1
Name: growlnotify
Version: 2019.2.28
Summary: growlnotify (Growl.app cli) python wrapper
Home-page: https://github.com/looking-for-a-job/growlnotify.py
License: UNKNOWN
Description: [![](https://img.shields.io/pypi/pyversions/growlnotify.svg?longCache=True)](https://pypi.org/project/growlnotify/)
        
        #### Install
        ```bash
        $ [sudo] pip install growlnotify
        ```
        
        #### Functions
        function|`__doc__`
        -|-
        `growlnotify.args(**kwargs)`|return list with `growlnotify` cli arguments
        `growlnotify.notify(**kwargs)`|run 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/)
        
        <p align="center"><a href="https://pypi.org/project/readme-md/">readme-md</a> - README.md generator</p>
Keywords: growlnotify
Platform: UNKNOWN
Classifier: Environment :: MacOS X
Classifier: License :: Public Domain
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
