View Pit Stop page for race #3 by cube_123 — Ghost race
View profile for Cube_123 (cube_123)
Official speed | 16.57 wpm (132.53 seconds elapsed during race) |
---|---|
Race Start | May 25, 2025 12:32:56pm UTC |
Race Finish | May 25, 2025 12:35:09pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 90.0% |
Points | 6.63 |
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) |