1
0

More than 1 year has passed since last update.

Python: インターネットからjsonを取ってきてDictにする

Last updated at Posted at 2022-02-09
USER_AGENT_DUMMY = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36"
HEADERS = {"User-Agent": USER_AGENT_DUMMY}

r = requests.get("https://hogehoge.com/fuga.json", headers=HEADERS)
print(r.json())
# {'hoge': 'fuga'}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0