-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitStatsForLibraries.py
91 lines (66 loc) · 2.85 KB
/
gitStatsForLibraries.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#%%
import urllib
import requests
import json as js
import numpy as np
import pandas as pd
# repo statistics documentation website
# https://developer.github.com/v3/repos/statistics/
# Get the weekly commit count for the repository owner and everyone else
# GET /repos/:owner/:repo/stats/participation
# Response
# Returns the total commit counts for the owner and total commit counts in all. all is everyone combined, including the owner in the last 52 weeks. If you'd like to get the commit counts for non-owners, you can subtract owner from all.
#
OAth2keysecret = '?client_id={xxxx}&client_secret={yyyy}'
OAth2keysecret = ''
token = '0ae26b10b955136a22683d4f375aa5b6f611b209'
#%%
def getCommitCount(owner, repo ):
url ='https://edult@api.github.com/repos/{owner}/{repo}/stats/participation'
url = url.format(owner=owner, repo=repo)
url = url + OAth2keysecret
print(url)
# response = requests.get(url= url , proxies= urllib.request.getproxies(), verify=False)
response = requests.get(url= url)
if (response.ok==False):
raise Exception('{0}, {1}'.format(owner, repo))
decode = js.JSONDecoder()
responseInDict = decode.decode(response.text)
totalCommitsInLast52Weeks = np.sum(responseInDict['all'])
# print("total commits {0}".format(totalCommitsInLast52Weeks) )
return(totalCommitsInLast52Weeks)
#%%
def getStarsForksWatchers(owner, repo):
url ='https://edult@api.github.com/repos/{owner}/{repo}'
url = url.format(owner=owner, repo=repo)
url = url + OAth2keysecret
print(url)
response = requests.get(url= url)
if (response.ok==False):
raise Exception('{0}, {1}'.format(owner, repo))
temp = response.json()
print("stars count:{0} forks count:{1} watchers count {2}".format(temp['stargazers_count'],
temp['forks_count'],
temp['subscribers_count']))
return ({'stars':temp['stargazers_count'],
'forks':temp['forks_count'],
'watchers':temp['subscribers_count']})
#%%
df = pd.read_csv(r'C:\Users\erdem\Documents\code\quantMinds2019\libraryList2.csv')
#df.apply(lambda x: pd.Series( , axis= 1)
res = pd.DataFrame()
for index, row in df.iterrows():
try:
dict1 = {'commits':getCommitCount(row['owner'], row['repo'])}
dict2 = getStarsForksWatchers(row['owner'], row['repo'])
dict1.update(dict2)
dict1.update({'owner':row['owner'],
'repo':row['repo'],
'category':row['category'],
'type':row['type']})
res = res.append(dict1, ignore_index=True)
except Exception as e:
print(str(e))
pass
#%%
res.to_csv(r'C:\Users\erdem\Documents\code\quantMinds2019\gitHubStats2.csv')