View Pit Stop page for race #3 by sidcode — Ghost race
View profile for Sid (sidcode)
Official speed | 43.36 wpm (50.65 seconds elapsed during race) |
---|---|
Race Start | April 28, 2015 6:30:32pm UTC |
Race Finish | April 28, 2015 6:31:23pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. krrish94 (50.69 wpm) |
Accuracy | 91.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) |