View Pit Stop page for race #4 by p_a_w_m — Ghost race
View profile for Paweł (p_a_w_m)
Official speed | 29.26 wpm (75.05 seconds elapsed during race) |
---|---|
Race Start | April 16, 2013 9:05:13pm UTC |
Race Finish | April 16, 2013 9:06:28pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 87.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) |