View Pit Stop page for race #3 by zde4d — Ghost race
Official speed | 68.35 wpm (32.13 seconds elapsed during race) |
---|---|
Race Start | May 11, 2025 7:16:21pm UTC |
Race Finish | May 11, 2025 7:16:53pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 27.34 |
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) |