|
@@ -102,7 +102,7 @@ def getTopContributedRepositories(repos, clientID, clientSecret):
|
|
|
jsonList = []
|
|
jsonList = []
|
|
|
for repo in repos:
|
|
for repo in repos:
|
|
|
# print repo
|
|
# print repo
|
|
|
- req = requests.get('https://api.github.com/repos/DrkSephy/' + repo + '/stats/contributors' + '?' + clientID + clientSecret)
|
|
|
|
|
|
|
+ req = requests.get('https://api.github.com/repos/DrkSephy/' + repo + '/stats/contributors' + '?' + clientID + '&' + clientSecret)
|
|
|
jsonList.append(json.loads(req.content))
|
|
jsonList.append(json.loads(req.content))
|
|
|
|
|
|
|
|
parsedData = []
|
|
parsedData = []
|
|
@@ -177,4 +177,3 @@ def filterStarGazerCount(data):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|