View Pit Stop page for race #24 by amosbird — Ghost race
View profile for Amos (amosbird)
Official speed | 54.46 wpm (40.32 seconds elapsed during race) |
---|---|
Race Start | October 1, 2017 10:02:55am UTC |
Race Finish | October 1, 2017 10:03:36am UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 21.79 |
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) |