mirror of
https://github.com/rsms/inter.git
synced 2024-11-27 09:49:07 +03:00
20 lines
495 B
Python
Executable File
20 lines
495 B
Python
Executable File
#!/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)
|