Skip to content

Instantly share code, notes, and snippets.

@luxu
Created July 20, 2022 19:26
Show Gist options
  • Save luxu/07489e8e9868a4b026cb9966e718fd4a to your computer and use it in GitHub Desktop.
Save luxu/07489e8e9868a4b026cb9966e718fd4a to your computer and use it in GitHub Desktop.
from requests import get
url = 'https://cms-media-api.r7.com'
response = get(url)
for info in response.json():
for info2 in info.items():
print(f'{info2[0]} => {info2[1]}')
print(f'{"*"*100}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment