Last active
March 17, 2020 11:16
-
-
Save abevieiramota/121bdbacd2d871cfe426d0ee03ff3309 to your computer and use it in GitHub Desktop.
This file contains 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 urllib.request import urlopen | |
url = 'https://raw.githubusercontent.com/AmitMY/chimera/master/git-assets/enriched/dev.json' | |
output = urlopen(url).read() | |
j = json.loads(output) | |
len(j) | |
# Out[7]: 1642 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment