示例#1
0
文件: tasks.py 项目: maria/cub
def get_contributions(account):
    get_repos(account.github_token, account.username)
    account.synced = int(time.time())
    account.save()

    delete_repos(account.github_token, account.username)
    account.synced = int(time.time())
    account.save()

    get_pulls(account.github_token, account.username)
    account.synced = int(time.time())
    account.save()

    get_score(account.username)
    account.synced = int(time.time())
    account.save()

    return account
示例#2
0
文件: api.py 项目: maria/cub
 def obj_create(self, bundle, request = None, **kwargs):
     get_repos(bundle.obj.github_token, bundle.obj.username)
     bundle.obj.data = {}
     return bundle