View Pit Stop page for race #1 by disenthrall — Ghost race
View profile for disenthrall (disenthrall)
Official speed | 56.20 wpm (39.07 seconds elapsed during race) |
---|---|
Race Start | December 14, 2018 2:27:27pm UTC |
Race Finish | December 14, 2018 2:28:06pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 22.48 |
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) |