View Pit Stop page for race #7 by verdantasd — Ghost race
View profile for verdant (verdantasd)
Official speed | 36.35 wpm (60.41 seconds elapsed during race) |
---|---|
Race Start | April 19, 2023 10:12:54pm UTC |
Race Finish | April 19, 2023 10:13:54pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 14.54 |
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) |