View Pit Stop page for race #488 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 48.82 wpm (44.98 seconds elapsed during race) |
---|---|
Race Start | May 6, 2025 1:49:58pm UTC |
Race Finish | May 6, 2025 1:50:43pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 19.53 |
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) |