View Pit Stop page for race #38 by fa1progra — Ghost race
View profile for Augusto Aguilar (fa1progra)
Official speed | 29.92 wpm (73.40 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 12:58:42am UTC |
Race Finish | June 15, 2025 12:59:56am UTC |
Outcome | No win (5 of 19) |
Accuracy | 93.0% |
Points | 11.97 |
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) |