View Pit Stop page for race #1 by jhirshman — Ghost race
View profile for Jason (jhirshman)
Official speed | 40.34 wpm (54.44 seconds elapsed during race) |
---|---|
Race Start | March 9, 2011 3:23:06am UTC |
Race Finish | March 9, 2011 3:24:01am UTC |
Outcome | Win (1 of 3) |
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) |