View Pit Stop page for race #140 by oschipor — Ghost race
View profile for Ovidiu (oschipor)
Official speed | 26.84 wpm (81.82 seconds elapsed during race) |
---|---|
Race Start | June 11, 2019 11:40:46am UTC |
Race Finish | June 11, 2019 11:42:08am UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 10.74 |
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) |