Skip to content

CodyCBakerPhD/work-history-data

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

186 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Work history data

A raw API dump from GitHub about all my activity. To be used in GitHub project dashboards.

Using curl

curl -fsSL https://raw.githubusercontent.com/[org or user name]/[repo name]/dist/content.tar.gz | tar -xz

Batch download (Python API)

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()))

About

A raw API dump from GitHub about all my activity. To be used to create a dashboard automatically.

Resources

Stars

Watchers

Forks

Contributors