View Pit Stop page for race #470 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 49.86 wpm (44.04 seconds elapsed during race) |
---|---|
Race Start | April 23, 2025 8:09:56am UTC |
Race Finish | April 23, 2025 8:10:40am UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 19.95 |
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) |