View Pit Stop page for race #1 by andrei2313 — Ghost race
View profile for Andrei (andrei2313)
Official speed | 28.75 wpm (76.38 seconds elapsed during race) |
---|---|
Race Start | October 6, 2025 2:24:53pm UTC |
Race Finish | October 6, 2025 2:26:09pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 88.0% |
Points | 11.50 |
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) |