View Pit Stop page for race #4 by alexk8 — Ghost race
View profile for Alex (alexk8)
Official speed | 72.19 wpm (30.42 seconds elapsed during race) |
---|---|
Race Start | July 21, 2015 4:44:41pm UTC |
Race Finish | July 21, 2015 4:45:11pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.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) |