Skip to content

Instantly share code, notes, and snippets.

@gotson
Created August 30, 2018 03:42
Show Gist options
  • Save gotson/bf2d484d30cd90c9f2b755e3486f17fc to your computer and use it in GitHub Desktop.
Save gotson/bf2d484d30cd90c9f2b755e3486f17fc to your computer and use it in GitHub Desktop.
Get Github releases download count per asset
curl https://api.github.com/repos/kubernetes/kubernetes/releases | jq 'map( {name: .name, asset: .assets[] } ) | map( {name: .name, asset: .asset.name, download_count: .asset.download_count} )'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment