View Pit Stop page for race #3 by strayfrozen — Ghost race
View profile for stray (strayfrozen)
Official speed | 19.34 wpm (113.55 seconds elapsed during race) |
---|---|
Race Start | August 1, 2023 1:43:22am UTC |
Race Finish | August 1, 2023 1:45:16am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.0% |
Points | 7.74 |
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) |