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
import gzip | |
import json | |
import requests | |
# Download the log file | |
resp = requests.get("https://www.ghfeed.org/data/2023-09-16-10.json.gz") | |
open('data.gz', 'wb').write(resp.content) | |
# Parse the log file |