Exemplo n.º 1
0
Arquivo: tasks.py Projeto: 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
Exemplo n.º 2
0
Arquivo: api.py Projeto: maria/cub
 def obj_create(self, bundle, request = None, **kwargs):
     get_pulls(bundle.obj.github_token, bundle.obj.username)
     bundle.obj.data = {}
     return bundle