View Pit Stop page for race #13 by vikash0207 — Ghost race
View profile for FreaKOde (vikash0207)
Official speed | 33.26 wpm (66.03 seconds elapsed during race) |
---|---|
Race Start | October 19, 2013 2:04:46pm UTC |
Race Finish | October 19, 2013 2:05:52pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 84.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) |