View Pit Stop page for race #392 by tikpyp — Ghost race
View profile for vloek (tikpyp)
Official speed | 48.29 wpm (45.48 seconds elapsed during race) |
---|---|
Race Start | May 17, 2025 8:39:59pm UTC |
Race Finish | May 17, 2025 8:40:44pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 19.32 |
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) |