summaryrefslogtreecommitdiff
path: root/misc/download-count.py
blob: c70532490faf702736c34ad0137515e6bb399cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
# encoding: utf8
from __future__ import print_function
import os, sys, json, urllib2

f = urllib2.urlopen('https://api.github.com/repos/rsms/inter/releases')
releases = json.load(f)

countTotal = 0

for release in releases:
  if len(release['assets']) > 0:
    count = release['assets'][0]['download_count']
    countTotal += count
    print('%s: %d' % (release['tag_name'], count))
  else:
    print('%s: (missing)' % release['tag_name'])

print('Total: %d' % countTotal)