#はじめに
pythonでRestAPIを実行し、テキストファイルを取得し、保存するコードです。
######環境
python3.9.6
#サンプルコード
import requests
url = 'https://[対象のURL]'
headers = {'Content-Type':'application/json','xxx-key':'<API認証キーなど>'}
try:
#APIで隔離メールをダウンロード、失敗したらエラーを出力
response = requests.get(url , headers=headers)
response.raise_for_status()
except requests.exceptions.RequestsException as e:
print("エラー:",e)
#ファイルを取得できた場合に、filename.txtとしてファイルを保存する。
if response.status_code == 200:
with open("filename.txt" ,mode='wb') as file:
file.write(response.content)