View Pit Stop page for race #205 by aadithebeast — Ghost race
View profile for aadithebest (aadithebeast)
Official speed | 33.61 wpm (65.34 seconds elapsed during race) |
---|---|
Race Start | September 2, 2025 8:13:11pm UTC |
Race Finish | September 2, 2025 8:14:17pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 13.44 |
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) |