View Pit Stop page for race #7 by akk12 — Ghost race
Official speed | 55.28 wpm (39.72 seconds elapsed during race) |
---|---|
Race Start | April 10, 2017 3:17:02am UTC |
Race Finish | April 10, 2017 3:17:41am UTC |
Outcome | No win (3 of 5) |
Opponents |
1. andythedinosaur (66.10 wpm) 2. squirrelbrained (60.49 wpm) 4. sollight (47.43 wpm) |
Accuracy | 93.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) |