View Pit Stop page for race #45 by claire_07 — Ghost race
View profile for Claire (claire_07)
Official speed | 15.25 wpm (144.00 seconds elapsed during race) |
---|---|
Race Start | July 3, 2023 9:02:15pm UTC |
Race Finish | July 3, 2023 9:04:39pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 6.10 |
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) |