Exemple #1
0
def update(hours):
    # from collections import defaultdict
    from gitboard.config import redis
    from gitboard.stats import Storage
    from gitboard.update import update_stats

    storage = Storage(redis)

    # scores = defaultdict(int)
    for repo in current_app.config["REPOS"]:
        click.echo("> Processing {}".format(repo))
        update_stats(repo)
        # print "----------------------------------------"
        # print "%dh Leaderboard for %s" % (hours, repo)
        # print "----------------------------------------"
        # i = 0
        # for author, score in storage.get_leaders(repo, hours):
        #     i += 1
        #     print "%d. %s (%s)" % (i, author, score)
        # print "----------------------------------------"

    click.echo("----------------------------------------")
    click.echo("%dh Global Leaderboard" % (hours,))
    click.echo("----------------------------------------")
    i = 0
    for author, score in storage.get_leaders(hours=hours):
        i += 1
        click.echo("%d. %s (%s)" % (i, author, score))
    click.echo("----------------------------------------")
Exemple #2
0
    return commits

if __name__ == '__main__':
    storage = Storage(redis.connect())

    hours = 24

    scores = defaultdict(int)
    for repo in app.config['REPOS']:
        try:
            update_stats(repo)
        except:
            continue
        # print "----------------------------------------"
        # print "%dh Leaderboard for %s" % (hours, repo)
        # print "----------------------------------------"
        # i = 0
        # for author, score in storage.get_leaders(repo, hours):
        #     i += 1
        #     print "%d. %s (%s)" % (i, author, score)
        # print "----------------------------------------"

    print "----------------------------------------"
    print "%dh Global Leaderboard" % (hours,)
    print "----------------------------------------"
    i = 0
    for author, score in storage.get_leaders(hours=hours):
        i += 1
        print "%d. %s (%s)" % (i, author, score)
    print "----------------------------------------"