View Pit Stop page for race #9 by mirawa — Ghost race
View profile for Renan (mirawa)
Official speed | 44.78 wpm (49.04 seconds elapsed during race) |
---|---|
Race Start | August 18, 2011 12:30:41am UTC |
Race Finish | August 18, 2011 12:31:30am UTC |
Outcome | No win (3 of 3) |
Accuracy | 89.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) |