View Pit Stop page for race #1 by jorgechaos — Ghost race
View profile for Jorge (jorgechaos)
Official speed | 27.22 wpm (80.68 seconds elapsed during race) |
---|---|
Race Start | May 15, 2018 1:35:38am UTC |
Race Finish | May 15, 2018 1:36:59am UTC |
Outcome | Win (1 of 2) |
Accuracy | 95.0% |
Points | 10.89 |
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) |