A raw API dump from GitHub about all my activity. To be used in GitHub project dashboards.
curl -fsSL https://raw.githubusercontent.com/[org or user name]/[repo name]/dist/content.tar.gz | tar -xz
import gzip
import json
import urllib.request
url = "https://raw.githubusercontent.com/CodyCBakerPhD/work-history-data/refs/heads/dist/content.min.json.gz"
with urllib.request.urlopen(url) as response:
data = json.loads(gzip.decompress(response.read()))