forked from triketora/women-in-software-eng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_script.py
190 lines (144 loc) · 5.42 KB
/
update_script.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/usr/bin/python
"""Much thanks to this blog post:
http://www.mattcutts.com/blog/write-google-spreadsheet-from-python/
"""
import argparse
import datetime
import re
from gdata.spreadsheet import service as ss_service
SS_KEY = '0AlZH8QBl60oodEJTdFA5TlZOcDJCMU02RkZoSHF5SHc'
WORKSHEET_ID = 'od6'
ss_client = None
def init_ss_client(email, password):
global ss_client
if not ss_client:
ss_client = ss_service.SpreadsheetsService()
ss_client.email = email
ss_client.password = password
ss_client.source = 'Update Script'
ss_client.ProgrammaticLogin()
def _print_line_skip_warning(line):
print 'Warning... skipping line:\n\t%s\n' % line
row_key_pattern = '\[(?P<row_key>\w+)\]'
row_key_prog = re.compile(row_key_pattern)
def _extract_row_key_from_data_line(line):
row_key = None
m = row_key_prog.match(line)
if m and m.group('row_key'):
row_key = m.group('row_key')
return row_key
col_keys = ('company', 'team', 'num_female_eng', 'num_eng', 'last_updated')
def _extract_col_key_value_from_data_line(line):
col_key, col_value = None, None
split_line = line.split(':')
if len(split_line) == 2:
if split_line[0] in col_keys:
col_key, col_value = split_line
col_key = col_key.strip()
col_value = col_value.strip()
return col_key, col_value
required_col_keys = ('company', 'num_female_eng', 'num_eng')
def _clean_row_data(row_data):
for required_col_key in required_col_keys:
if required_col_key not in row_data.keys():
return None
try:
num_female_eng = int(row_data['num_female_eng'])
row_data['num_female_eng'] = num_female_eng
num_eng = int(row_data['num_eng'])
row_data['num_eng'] = num_eng
except ValueError:
return None
row_data['percent_female_eng'] = '%.2f' % (
100. * num_female_eng / num_eng)
col_keys = row_data.keys()
if 'team' not in col_keys:
row_data['team'] = 'N/A'
if 'last_updated' not in col_keys:
row_data['last_updated'] = 'Not provided'
return row_data
def parse_ss_rows_data_from_file(filename):
rows_data = {}
row_key = None
row_data = {}
with open(filename) as f:
for line in f:
line = line.strip()
if not line:
continue
elif line.startswith('#'):
continue
next_row_key = _extract_row_key_from_data_line(line)
if row_key and next_row_key:
# Save last row's data.
clean_row_data = _clean_row_data(row_data)
if clean_row_data:
clean_row_data['key'] = row_key
rows_data[row_key] = clean_row_data
row_data = {}
if next_row_key:
# Move onto constructing data for the next row.
row_key = next_row_key
continue
if not row_key:
# No row_key!
_print_line_skip_warning(line)
else:
col_key, col_value = _extract_col_key_value_from_data_line(line)
if col_key is not None and col_value is not None:
row_data[col_key] = col_value
else:
# Invalid col data.
_print_line_skip_warning(line)
clean_row_data = _clean_row_data(row_data)
if clean_row_data:
clean_row_data['key'] = row_key
rows_data[row_key] = clean_row_data
return rows_data
def _summarize_rows_data(rows_data):
num_female_eng = 0
num_eng = 0
for row_data in rows_data:
num_female_eng += row_data['num_female_eng']
num_eng += row_data['num_eng']
today = datetime.date.today()
summary_row_data = {
'key': 'all',
'company': 'ALL',
'num_female_eng': num_female_eng,
'num_eng': num_eng,
'last_updated': today.strftime('%m/%d/%y')
}
return _clean_row_data(summary_row_data)
def clear_ss_data(ss_key, worksheet_id):
list_feed = ss_client.GetListFeed(ss_key, worksheet_id)
if list_feed:
for row in list_feed.entry:
ss_client.DeleteRow(row)
def update_ss_from_file(ss_key, worksheet_id, data_filename):
if not ss_client:
print 'Oops! SpreadsheetsService client not initialized.'
return
clear_ss_data(ss_key, worksheet_id)
rows_data = parse_ss_rows_data_from_file(data_filename).values()
summary_row_data = _summarize_rows_data(rows_data)
rows_data.append(summary_row_data)
# Sort in descending order by number of total engineers.
rows_data.sort(key=lambda r: r['num_eng'], reverse=True)
for row_data in rows_data:
row_data = dict((key.replace('_', ''), str(value))
for key, value in row_data.items())
entry = ss_client.InsertRow(row_data, ss_key, worksheet_id)
if __name__ == '__main__':
parser = argparse.ArgumentParser('Update spreadsheet.')
parser.add_argument('-e', '--email')
parser.add_argument('-p', '--password')
parser.add_argument('-d', '--data-file')
parser.add_argument('-s', '--spreadsheet-key')
args = parser.parse_args()
email = args.email
password = args.password
data_filename = args.data_file
ss_key = args.spreadsheet_key or SS_KEY
init_ss_client(email, password)
update_ss_from_file(ss_key, WORKSHEET_ID, data_filename)