PythonのプログラムからLINE通知する方法
PythonのプログラムからLINE通知する方法。
botの監視用としても使えるし、バックテスト用としても使える。
買い時が来たら知らせてくれるようにする事でチャートに張り付いていなくても大丈夫になるかもしれない便利機能。
LINE公式サイトからトークンを発行
プログラムにLINE通知機能を組み込む
requests をインポート
import requests
def文を使って関数 lineNotify を定義
def lineNotify(message):
line_notify_token = "ここに取得したトークンを入力"
line_notify_api = "https://notify-api.line.me/api/notify"
payload = {'message':message}
headers = {'Authorization': 'Bearer' + line_notify_token}
requests.post(line_notify_api, data=payload, headers=headers}
変数 message に出力したい文章を入れる
message = "LINEで通知させたい文言"
関数 lineNotify を呼び出す
lineNotify(message)
または、関数 lineNotify を呼び出す時に引数を渡す
lineNotify("LINEで通知させたい文言")
Author And Source
この問題について(PythonのプログラムからLINE通知する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/sugeyoshikiri/items/7390b9884675cc9e4e15著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .