View Pit Stop page for race #8 by avinash_01 — Ghost race
View profile for Avinash (avinash_01)
Official speed | 30.91 wpm (71.05 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 5:08:02pm UTC |
Race Finish | June 6, 2025 5:09:13pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 12.36 |
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) |