Metadata-Version: 2.1
Name: npline
Version: 1.0.3
Summary: A package to help you sending a notification to LINE
Home-page: https://github.com/noppGithub/npline
Author: Nopporn Phantawee
Author-email: n.phantawee@gmail.com
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
License-File: LICENSE

# NP LINE
A helper package to send a LINE notification message to your team

### Prerequisites
- Please use this [guide](https://youtu.be/_iSSOUFANyk) to create your token

### Installation
`pip install npline`

### Example
```python
from npline import LINE

if __name__ == "__main__":
    my_token = 'hLZXJLmW3vClwGhRxjsayoOKmLe1MYkPoM50yegFwWp'
    line = LINE(token_id=my_token,instance_id=1)
    line.send_msg('Hello World!')
```
