View Pit Stop page for race #97 by tsds — Ghost race
Official speed | 39.15 wpm (56.09 seconds elapsed during race) |
---|---|
Race Start | September 18, 2021 6:41:05pm UTC |
Race Finish | September 18, 2021 6:42:01pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 15.66 |
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) |