-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorig.aw2gd.py
executable file
·309 lines (281 loc) · 10.3 KB
/
orig.aw2gd.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# aw2gd.py - Last modified: Tue 14 Feb 2012 01:23:57 AM CST
#
# Copyright (C) 2011 Richard A. Johnson <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Parses Active Works registration report CSV file into a Google Docs
Spreadsheet"""
import csv
import getopt
import os
import re
import sys
try:
from progressbar import ProgressBar, Bar, SimpleProgress
except ImportError:
print "You need 'python-progressbar' installed"
sys.exit(3)
try:
import gdata.service
import gdata.spreadsheet
import gdata.spreadsheet.service
except ImportError:
print "Either 'python-gdata' is not installed or it isn't configured."
sys.exit(3)
# DEBUG - Enabled prints to stdout, Disabled goes to GDocs
DEBUG = 0
# Google Docs Spreadsheet Name
SPREADSHEET = '2012_TTSeries_Reg_Results'
# Event year for calculating racing age
YEAR = 2012
# Categories
CATS = {
# Age Categories
'10-14': (10, 14),
'15-19': (15, 19),
'20-24': (20, 24),
'25-29': (25, 29),
'30-34': (30, 34),
'35-39': (35, 39),
'40-44': (40, 44),
'45-49': (45, 49),
'50-54': (50, 54),
'55-59': (55, 59),
'60-64': (60, 64),
'65-69': (65, 69),
'70-74': (70, 74),
'75-79': (75, 79),
'80+' : (80, 120),
# Ability Categories
'1/2/3': ('Category 1/2/3 (Elite Level)'),
'4/5' : ('Category 4/5 (Amateur Level)')
}
# Time Slots
TIMESLOTS = {
'1': '9:30am or earlier',
'2': '9:30am to 11:00am',
'3': '11:00am to 1:00pm',
'4': '1:00pm to 2:30pm',
'5': '2:30pm or later (if available)'
}
def read_csv_file(fname):
"""Read the CSV file and return a list"""
reader = csv.DictReader(open(fname, 'rb'), delimiter=',', quotechar='"')
csvlist = []
for row in reader:
csvlist.append(row)
return csvlist
def get_events(events):
"""Parse the data and return the events rider is participating in."""
if 'Series 4 Race Deal' in events:
return str('1'), str('1'), str('1'), str('1')
elif 'Last 3 Events' in events:
return None, str('1'), str('1'), str('1')
elif 'Last 2 Events' in events:
return None, None, str('1'), str('1')
elif '#1' in events:
return str('1'), None, None, None
elif '#2' in events:
return None, str('1'), None, None
elif '#3' in events:
return None, None, str('1'), None
elif '#4' in events or 'John Fraser Memorial Time Trial' in events:
return None, None, None, str('1')
def get_category(cattype, catdata):
"""Parse the data and return the correct category. Either age-based, or
ability based if racing twice.
@cattype If true then age, else parse category 1/2/3 and 4/5 data
"""
if cattype:
racingage = YEAR - int(catdata.split('/')[2])
for cat in CATS.keys():
if '1/2/3' not in cat and '4/5' not in cat:
if racingage in range(int(CATS[cat][0]), int(CATS[cat][1])+1):
return cat
for cat in CATS.keys():
if catdata in CATS[cat]:
return cat
def cleanup_rider_list(riderlist):
"""Cleans up the rider list. If rider racing twice, adds new rider to the
list. Makes writing to GDocs easier in the end."""
riders = []
for rider in riderlist:
nrider = {}
nrider['tt1'], nrider['tt2'], nrider['tt3'], nrider['tt4'] = get_events(
rider['Registration category'])
nrider['rcvddate'], nrider['rcvdtime'] = rider['Registration time'].split(' ')
nrider['namefirst'] = rider['Name: First name'].title()
nrider['namelast'] = rider['Name: Last name'].title()
nrider['bdate'] = rider['Date of birth']
nrider['gender'] = rider['Gender'][0]
nrider['email'] = rider['Email']
nrider['phoneday'] = rider['Day phone']
nrider['phoneeve'] = rider['Evening phone']
nrider['phonecell'] = rider['Cell phone']
nrider['street'] = rider['Contact address: Address1'].title()
nrider['apt'] = rider['Contact address: Address2'].title()
nrider['city'] = rider['Contact address: City'].title()
nrider['state'] = rider['Contact address: State Province Region']
nrider['zip'] = rider['Contact address: ZIP/Postal code']
nrider['emcontact'] = rider['Emergency contact name'].title()
nrider['emphone'] = rider['Emergency contact phone'].title()
nrider['abrlicense'] = rider['ABR License Number']
nrider['club'] = rider['Cycling club'].title()
if nrider['gender'] == 'F':
catsex = 'W'
else:
catsex = 'M'
nrider['catprimary'] = '%s%s' % (catsex,
get_category(True, rider['Date of birth']))
nrider['timeprefstart'] = rider['Desired Start Time']
for key in TIMESLOTS.keys():
if nrider['timeprefstart'] == TIMESLOTS[key]:
nrider['timeprefstart'] = key
if rider['Category']:
if 'Age Group' in rider['Category']:
nrider['catsecondary'] = nrider['catprimary']
else:
nrider['catsecondary'] = '%s%s' % (catsex,
get_category(False, rider['Category']))
nrider_ = nrider.copy()
nrider_['catprimary'] = nrider_['catsecondary']
del nrider_['catsecondary']
try:
nrider_['timebetweenraces'] = rider['Time Between Races']
except:
nrider_['timebetweenraces'] = 45
riders.append(nrider_)
riders.append(nrider)
return riders
def send_to_gdocs(user, pw, riders):
"""Sends the riders to Google Docs spreadsheet."""
gdclient = gdata.spreadsheet.service.SpreadsheetsService()
gdclient.email = user
gdclient.password = pw
gdclient.source = 'ActiveWorks Registration to Google Spreadsheet'
gdclient.ProgrammaticLogin()
keyfeed = gdclient.GetSpreadsheetsFeed()
spreads = []
for i in keyfeed.entry:
spreads.append(i.title.text)
snum = None
for i, j in enumerate(spreads):
if j == SPREADSHEET:
snum = i
if snum is None:
sys.exit(1)
keyparts = keyfeed.entry[snum].id.text.split('/')
currkey = keyparts[len(keyparts)-1]
wkshtfeed = gdclient.GetWorksheetsFeed(currkey)
wkshtparts = wkshtfeed.entry[0].id.text.split('/')
currwkshtid = wkshtparts[len(wkshtparts)-1]
pbar = ProgressBar(widgets=[SimpleProgress(), Bar()],
maxval=len(riders)).start()
counter = 0
for rider in riders:
for key in rider.keys():
if not rider[key] or 'None' in rider[key]:
del rider[key]
entry = gdclient.InsertRow(rider, currkey, currwkshtid)
if isinstance(entry, gdata.spreadsheet.SpreadsheetsList):
counter += 1
pbar.update(counter)
else:
print 'FAILURE! %s, %s - %s did not insert into spreadsheet' % (
rider['namelast'], rider['namefirst'], rider['catprimary'])
pbar.finish()
def main():
"""Main function that runs the program"""
user = None
pw = None
ifile = None
try:
opts, args = getopt.getopt(sys.argv[1:], "", ["user=", "pw=",
"ifile="])
except getopt.error, msg:
print 'aw2gd.py --user [google username] --pw [google password] --ifile [CSV file]'
sys.exit(2)
for o, a in opts:
if o == "--user":
user = a
elif o == "--pw":
pw = a
elif o == "--ifile":
ifile = a
if not user or not pw or not ifile:
print 'aw2gd.py --user [google username] --pw [google password] --ifile [CSV file]'
sys.exit(2)
sys.stdout.write(
'\x1b[31m%s\x1b[0m\n' % 'Run in (d)ebug mode, (p)rint debug mode, or '
'(r)elease mode?')
input_ = raw_input('d/p/r: ')
stdoutprint = False
releasemode = False
if input_ == 'p':
stdoutprint = True
if input_ == 'r':
releasemode = True
csvlist = read_csv_file(ifile)
riders = cleanup_rider_list(csvlist)
if stdoutprint:
from pprint import PrettyPrinter
printer = PrettyPrinter(indent=4)
for rider in riders:
printer.pprint(rider)
print '##### DEBUG INFO #####'
counter = 0
for rider in riders:
try:
if rider['catsecondary']:
counter += 1
except KeyError:
pass
print 'Total registrants parsed: %s ' % (len(riders)-counter)
print 'Total racing twice: %s' % counter
print 'Total racing: %s' % len(riders)
print '\n~~~~~ Categories for people racing twice ~~~~~'
counter = 0
for rider in riders:
try:
if rider['catsecondary']:
counter += 1
print '%s - %s - %s - %s - %s, %s' % (counter, rider['bdate'],
rider['catprimary'], rider['catsecondary'], rider['namelast'],
rider['namefirst'])
except KeyError:
pass
print '\n~~~~~ Riders Preferred Timeslots ~~~~~'
ts1 = 0
ts2 = 0
ts3 = 0
ts4 = 0
ts5 = 0
for rider in riders:
if int(rider['timeprefstart']) == 1: ts1+=1
elif int(rider['timeprefstart']) == 2: ts2+=1
elif int(rider['timeprefstart']) == 3: ts3+=1
elif int(rider['timeprefstart']) == 4: ts4+=1
elif int(rider['timeprefstart']) == 5: ts5+=1
print '9:30am or earlier:\t%s' % ts1
print '9:30am to 11:00am:\t%s' % ts2
print '11:00am to 1:00pm:\t%s' % ts3
print '1:00pm to 2:30pm:\t%s' % ts4
print '2:30pm or later:\t%s' % ts5
if releasemode:
send_to_gdocs(user, pw, riders)
if __name__ == '__main__':
main()