View Pit Stop page for race #3 by jessecham — Ghost race
View profile for jessecham (jessecham)
Official speed | 32.93 wpm (66.69 seconds elapsed during race) |
---|---|
Race Start | August 4, 2023 1:12:55pm UTC |
Race Finish | August 4, 2023 1:14:02pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 13.17 |
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) |