View Pit Stop page for race #1 by mattmccul — Ghost race
View profile for Matt (mattmccul)
Official speed | 58.91 wpm (37.28 seconds elapsed during race) |
---|---|
Race Start | January 31, 2011 5:56:25am UTC |
Race Finish | January 31, 2011 5:57:03am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. noronham (45.99 wpm) |
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) |