View Pit Stop page for race #34 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 26.74 wpm (82.12 seconds elapsed during race) |
---|---|
Race Start | June 22, 2025 11:58:46am UTC |
Race Finish | June 22, 2025 12:00:08pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 90.0% |
Points | 10.70 |
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) |