前提・実現したいこと
【LINENotify】Pythonでメッセージと画像を送るシステムを作っています。
エラーのなくしかたがわかりません。わかる方教えてください。
発生している問題・エラーメッセージ
requests.post(line_notify_api, data=payload, headers=headers, files=files) で 'latin-1' codec can't encode character '\u3010' in position 7: ordinal not in range(256) と出る
該当のソースコード
Python
プログラム
Python
1import argparse 2import requests 3 4 5def PythonNotify(message, *args): 6 # 諸々の設定 7 line_notify_api = 'https://notify-api.line.me/api/notify' 8 line_notify_token = '【token】' 9 headers = {'Authorization': 'Bearer ' + line_notify_token} 10 # メッセージ 11 payload = {'message': message} 12 # 画像を含むか否か 13 if len(args) == 0: 14 requests.post(line_notify_api, data=payload, headers=headers) 15 else: 16 # 画像 17 files = {"imageFile": open(args[0], "rb")} 18 requests.post(line_notify_api, data=payload, headers=headers, files=files) 19 20 21if __name__=='__main__': 22 PythonNotify('これはテストです。', 'C:/test.png')
回答1件
あなたの回答
tips
プレビュー