Tom (tgbrooks)

Race #1

View Pit Stop page for race #1 by tgbrooksGhost race

View profile for Tom (tgbrooks)

Official speed 64.98 wpm (33.80 seconds elapsed during race)
Race Start October 15, 2012 10:06:51pm UTC
Race Finish October 15, 2012 10:07:25pm UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 0.00
Text #10005 (Length: 183 characters)

class URLLister(SGMLParser): def reset(self): SGMLParser.reset(self) self.urls = [] def start_a(self, attrs): href = [v for k, v in attrs if k=='href'] if href: self.urls.extend(href)