View Pit Stop page for race #9 by mat_o — Ghost race
View profile for mat O (mat_o)
Official speed | 33.00 wpm (66.55 seconds elapsed during race) |
---|---|
Race Start | March 1, 2023 6:33:09am UTC |
Race Finish | March 1, 2023 6:34:16am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 13.20 |
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) |