Created
July 20, 2022 19:26
-
-
Save luxu/07489e8e9868a4b026cb9966e718fd4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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