Using Line Notify more easily
Project description
LINE Notify client SDK
This is LINE Notify client SDK that you can build Notify bot quickly.
Usage
You need a LINE account and create a Notify like this:
initialize instance
from line_notify.client import Client
client = Client(
client_id='YOUR_CLIENT_ID',
client_secret='YOUR_CLIENT_SECRET',
redirect_uri='YOUR_URI'
)
Get access token
access_token = client.get_access_token(code='NOTIFY_RESPONSE_CODE')
print(access_token)
# N6g50DiQZk5Xh...25FoFzrs2npkU3z
Get Status
status = client.status(access_token='YOUR_ACCESS_TOKEN')
print(status)
# {'status': 200, 'message': 'ok', 'targetType': 'USER', 'target': 'NiJia Lin'}
Send Message
Just message
response = client.send(access_token='YOUR_ACCESS_TOKEN', params={
'message': 'This is notify message'
})
print(response)
# {'status': 200, 'message': 'ok'}
With sticker, image_path, thumbnail or fullsize image
You can find stickerId and stickerPackageId here
# push message with sticker or image
response = client.send(access_token='YOUR_ACCESS_TOKEN', params={
'message': 'This is notify message',
'stickerPackageId': '1',
'stickerId': '1',
# image_path='./test_image.png',
# image_thumbnail='https://i.imgur.com/RhvwZVm.png',
# image_fullsize='https://i.imgur.com/RhvwZVm.png',
})
print(response)
# {'status': 200, 'message': 'ok'}
Revoke access token
from line_notify.client import Client
client = Client()
revoke = client.revoke(access_token='CKmvd81Yfd9Xv38ayQdt7JN4H90oQrP6srFmKckx3sL')
print(revoke)
# {'status': 200, 'message': 'ok'}
Contributing
Fork before Clone the repository: shell script git clone git@github.com:your-username/line-notify.git
Run pytest to make sure the tests pass: shell script cd line-notify/ python -m pytest tests/ # License MIT License
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
lotify-1.0.0.tar.gz
(6.7 kB
view details)
File details
Details for the file lotify-1.0.0.tar.gz
.
File metadata
- Download URL: lotify-1.0.0.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/3.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccd3a5a9897b7b77aa44cedc52cf8aa9bf03214d87ca3317cf6c9d0ba339c0c1 |
|
MD5 | 4a539bb01e764fe97b3cceab78d95638 |
|
BLAKE2b-256 | a4aa267b620d49613f2e6cad1143c943f887adc6362f5a5099173abfb0ae8f10 |