View Pit Stop page for race #165 by secret_codes — Ghost race
View profile for Anonymous (secret_codes)
Official speed | 28.56 wpm (76.89 seconds elapsed during race) |
---|---|
Race Start | October 11, 2018 12:43:56pm UTC |
Race Finish | October 11, 2018 12:45:13pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 11.43 |
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) |