View Pit Stop page for race #1 by loart — Ghost race
Official speed | 39.18 wpm (56.05 seconds elapsed during race) |
---|---|
Race Start | January 28, 2011 11:14:36pm UTC |
Race Finish | January 28, 2011 11:15:32pm UTC |
Outcome | Win (1 of 2) |
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) |