requestsモジュールでAPIを叩く – 【Python】

requestsモジュールでAPIを叩く – 【Python】

PythonでAPIを実行するためにrequestsモジュールを使用します。

インストール

requestsモジュールをインストールします。

pip install requests

GETメソッド

requests.get()メソッドの引数にURLを指定します。

import requests

url = 'http://example.com/' # 実際のURL指定

response = requests.get(url)

print(response.url) # 実際のURL
print(response.status_code) # 200
print(response.headers) # {'Date': 'Fri, 28 Feb 2022 06:27:39 GMT', 'Content-Type': 'application/json', 'Content-Length': '20', 'Connection': 'keep-alive', 'x-amzn-RequestId': 'db9fe6ae-23a8-47fa-82d4-e6585588cff2', 'X-Amzn-Trace-Id': 'root=1-65d83adb-76c1a9d14d3eaefc343dd928;parent=0db006ac87a608fe;sampled=0;lineage=a606f8d0:0'}
print(response.text) # "Hello from Lambda!"
print(response.content) # b'"Hello from Lambda!"'

print(type(response)) # <class 'requests.models.Response'>

株式会社CONFRAGE ITソリューション事業部をもっと見る

今すぐ購読し、続きを読んで、すべてのアーカイブにアクセスしましょう。

続きを読む

タイトルとURLをコピーしました