View Pit Stop page for race #2 by ollie_rk_yt — Ghost race
View profile for Ollie R-K (ollie_rk_yt)
Official speed | 34.77 wpm (63.16 seconds elapsed during race) |
---|---|
Race Start | July 11, 2023 9:35:19am UTC |
Race Finish | July 11, 2023 9:36:22am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 13.91 |
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) |