View Pit Stop page for race #57 by kent_type — Ghost race
View profile for KEN (kent_type)
Official speed | 36.69 wpm (59.85 seconds elapsed during race) |
---|---|
Race Start | August 5, 2025 8:39:52pm UTC |
Race Finish | August 5, 2025 8:40:52pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 14.68 |
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) |