View Pit Stop page for race #29 by drgsus — Ghost race
View profile for Serg (drgsus)
Official speed | 53.81 wpm (40.81 seconds elapsed during race) |
---|---|
Race Start | February 8, 2017 10:45:27am UTC |
Race Finish | February 8, 2017 10:46:08am UTC |
Outcome | No win (2 of 3) |
Accuracy | 90.0% |
Points | 0.00 |
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) |