View Pit Stop page for race #64 by pasta_smuggler — Ghost race
View profile for PastaSmuggler (pasta_smuggler)
Official speed | 48.73 wpm (45.06 seconds elapsed during race) |
---|---|
Race Start | May 8, 2025 10:11:47am UTC |
Race Finish | May 8, 2025 10:12:32am UTC |
Outcome | Win (1 of 2) |
Accuracy | 96.0% |
Points | 19.49 |
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) |