View Pit Stop page for race #3 by vielle — Ghost race
Official speed | 36.00 wpm (61.00 seconds elapsed during race) |
---|---|
Race Start | April 21, 2013 11:30:24pm UTC |
Race Finish | April 21, 2013 11:31:25pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. andrew1167 (32.61 wpm) |
Accuracy | 86.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) |