View Pit Stop page for race #239 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 26.63 wpm (82.46 seconds elapsed during race) |
---|---|
Race Start | September 18, 2025 11:18:23am UTC |
Race Finish | September 18, 2025 11:19:45am UTC |
Outcome | No win (3 of 3) |
Accuracy | 89.0% |
Points | 10.65 |
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) |