View Pit Stop page for race #1 by thoarell — Ghost race
View profile for thomas (thoarell)
Official speed | 60.53 wpm (36.28 seconds elapsed during race) |
---|---|
Race Start | August 4, 2022 11:56:50pm UTC |
Race Finish | August 4, 2022 11:57:26pm UTC |
Outcome | No win (3 of 4) |
Accuracy | 96.0% |
Points | 24.21 |
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) |