View Pit Stop page for race #17 by stop__ — Ghost race
View profile for Stop (stop__)
Official speed | 28.60 wpm (76.78 seconds elapsed during race) |
---|---|
Race Start | April 15, 2023 9:49:36pm UTC |
Race Finish | April 15, 2023 9:50:53pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 91.0% |
Points | 11.44 |
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) |