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