View Pit Stop page for race #14 by jonsport — Ghost race
View profile for jOn (jonsport)
Official speed | 35.86 wpm (61.24 seconds elapsed during race) |
---|---|
Race Start | April 8, 2020 5:43:08am UTC |
Race Finish | April 8, 2020 5:44:10am UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
Points | 14.34 |
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) |