Warning: Undefined array key 1 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 12

Warning: Undefined array key 2 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 15

Warning: Undefined array key 3 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 18

Warning: Undefined array key 4 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 21

Warning: Undefined array key 1 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 24

Warning: Undefined array key 2 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 27

Warning: Undefined array key 3 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 30

Warning: Undefined array key 4 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 33

pythonでLINEにメッセージを送る


Warning: Undefined array key 1 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 12

Warning: Undefined array key 2 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 15

Warning: Undefined array key 3 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 18

Warning: Undefined array key 4 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 21

Warning: Undefined array key 1 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 24

Warning: Undefined array key 2 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 27

Warning: Undefined array key 3 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 30

Warning: Undefined array key 4 in /home/semtable/teihenai.com/public_html/wp-content/themes/sango-theme-poripu/library/functions/prp_content.php on line 33

 

pythonからLINEにメッセージを送れるようになると、いろんな事ができそうです。(ドッキリ的なことも含めて)

一番の目的は、実行終了したときに通知して欲しいからです。

ソースコード

メッセージの内容は、「終了」にしたいときの例です。

import requests

line_notify_token = 'トークン'
line_notify_api = 'https://notify-api.line.me/api/notify'
message = '終了'


payload = {'message': message}
headers = {'Authorization': 'Bearer ' + line_notify_token} 
line_notify = requests.post(line_notify_api, data=payload, headers=headers)