Metadata-Version: 2.1
Name: NotiMe
Version: 0.0.2
Summary: A simple notification program
Home-page: https://github.com/pruet/notime
Author: Pruet Boonma
Author-email: pruetboonma@gmail.com
License: MIT
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
License-File: LICENSE
Requires-Dist: requests (~=2.27)
Requires-Dist: argparse (~=1.4)
Requires-Dist: configparser (~=5.2)

# NotiMe
This program send a notify to user through many channels.

## Prerequisites
### Line
You have to generate access token from Line Notify Bot website https://notify-bot.line.me

### Write
Only support linux 'write' command, might not work with WSL.

## Installation
pip install NotiMe

## Configuration
edit .notime.rc in your home directory, see notime.rc.example for guideline.

## Usage
### CLI
    $ execution_something_that_need_a_long_time_to_finish.sh && notime -l "That very long execution is done."

### Python package
    from NotiMe import send_write_notify
    from NotiMe import send_line_notify

    send_write_notify('Done')                   # send notify through write command to local user
    send_line_notify('Done', LINE_API_TOKEN)    # send notify through Line API using LINE_API_TOKEN (see Prerequisites)

## References
- [LINE Notify API Document](https://notify-bot.line.me/doc/)


