A Simple Wrapper for LINE Messenger Notify
Project description
# LINE Notify
A Simple Wrapper for LINE Messenger Notify
## Prerequisites
You have to generate access token on below site.
https://notify-bot.line.me
## Installation
```bash
pip install line_notify
```
## Usage
```python
from line_notify import LineNotify
ACCESS_TOKEN = "L52Z9PAH4kZ82JHSkfjTQ234c1cY2iAKdafaWYv77Ad"
notify = LineNotify(ACCESS_TOKEN)
notify.send("Text test")
notify.send("Image test", image_path='./test.jpg')
notify.send("Sticker test", sticker_id=283, package_id=4)
notify.send("Image & Sticker test", image_path='./test.jpg', sticker_id=283, package_id=4)
```
If you set the name, it send a message with the name; `[NAME] blah blah..`
```python
notify = LineNotify(ACCESS_TOKEN, name="CLAIR")
notify.send("Text test") # [CLAIR] Test test
```
If you set LineNotify off, then it won't send a message. (Default is `on`)
```python
notify.off()
notify.send("It won't be sent.")
notify.on()
notify.send("It will be sent.")
```
Also if you set `ACCESS_TOKEN=None`, it won't send a message.
```python
ACCESS_TOKEN = None
notify = LineNotify(ACCESS_TOKEN)
notify.send("It won't be sent.")
```
## Reference
[LINE Notify API Document](https://notify-bot.line.me/doc/)
A Simple Wrapper for LINE Messenger Notify
## Prerequisites
You have to generate access token on below site.
https://notify-bot.line.me
## Installation
```bash
pip install line_notify
```
## Usage
```python
from line_notify import LineNotify
ACCESS_TOKEN = "L52Z9PAH4kZ82JHSkfjTQ234c1cY2iAKdafaWYv77Ad"
notify = LineNotify(ACCESS_TOKEN)
notify.send("Text test")
notify.send("Image test", image_path='./test.jpg')
notify.send("Sticker test", sticker_id=283, package_id=4)
notify.send("Image & Sticker test", image_path='./test.jpg', sticker_id=283, package_id=4)
```
If you set the name, it send a message with the name; `[NAME] blah blah..`
```python
notify = LineNotify(ACCESS_TOKEN, name="CLAIR")
notify.send("Text test") # [CLAIR] Test test
```
If you set LineNotify off, then it won't send a message. (Default is `on`)
```python
notify.off()
notify.send("It won't be sent.")
notify.on()
notify.send("It will be sent.")
```
Also if you set `ACCESS_TOKEN=None`, it won't send a message.
```python
ACCESS_TOKEN = None
notify = LineNotify(ACCESS_TOKEN)
notify.send("It won't be sent.")
```
## Reference
[LINE Notify API Document](https://notify-bot.line.me/doc/)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
line_notify-0.1.4.tar.gz
(2.2 kB
view details)
File details
Details for the file line_notify-0.1.4.tar.gz
.
File metadata
- Download URL: line_notify-0.1.4.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 701469226632e58809e1388e8c2a95f0d5c6cb7730f2297566e6dea1db347a0f |
|
MD5 | f4bbe2e6fb721ac547618d32af3a015e |
|
BLAKE2b-256 | 0265650411697b833b3a41614d70352ee08a71a78257116a117d377be6f20fd7 |