超簡単PythonでLineに投稿(API・Line Notify)
Pythonで超簡単にLineでメッセージ送信(API・Line Notify利用)
1. Line Notifyにログイン
2. マイページでアクセストークン発行
3. ツールインストール
$ pip install linenotipy
4. ファイル作成
line.py
from linenotipy import Line
# tokenには発行されたアクセストークンを指定
line = Line(token='XXXXXXXXXX')
line.post(message="Hello, world.")
5. Line投稿
$ python line.py
以上、超簡単
ちなみに画像を投稿する場合は
line.post(message="Hello, image.", imageFile="test.png")
スタンプを投稿する場合は
line.post(message="Hello, stamp.", stickerPackageId=3, stickerId=180)
stickerPackageId、stickerIdについてはドキュメント参照