【Python】requestのヘッダーを設定する

python
headers = {
  'aaa': 'bbb',
  'ccc': 'ddd'
}
response = requests.get(url, header)

関連記事