View Pit Stop page for race #1884 by dudiellon — Ghost race
View profile for @dudiellon (dudiellon)
Official speed | 78.22 wpm (28.07 seconds elapsed during race) |
---|---|
Race Start | June 10, 2015 2:36:40pm UTC |
Race Finish | June 10, 2015 2:37:09pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.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) |