Metadata-Version: 2.1
Name: notifier-function
Version: 1.5.1
Summary: Notify you when a function finished with option to send a email
Home-page: https://github.com/enmanuel-mag/notifier_function
Author: Enmanuel Magallanes Pinargote
Author-email: fmagalla@fiec.espol.edu.ec
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: py-notifier

# Notifier Function Status
This library use a decorator to show a toast in your screen.

## Requeriments

Please install this packages by yourself depending you OS:

- Windows: ```pip3 install win10toast```
- Ubuntu: ```apt-get install libnotify-bin``` (if don't work try searching how install notify-send for your distro of Linux)

## Usage

All that you need is use a decorator and specific some parameters, next explain it:

Import: `from notifier import notify`

Decorator to use: `@notify()`

### Parameters

- **title**: the title of toast notification, by defult is: Function finished.
- **msg**: the message of toast notification, by default is: `Your function has finished`.
- **duration**: the time, in seconds, that the nottications will show, by default is 8.
- **urgency**: the urgency of the notifcation. By defualt is `normal`. The options are:
  - low.
  - normal.
  - critial.


