View Pit Stop page for race #1 by huhuhn — Ghost race
View profile for Huhuhn (huhuhn)
Official speed | 40.84 wpm (53.77 seconds elapsed during race) |
---|---|
Race Start | June 26, 2018 6:59:48pm UTC |
Race Finish | June 26, 2018 7:00:42pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 16.34 |
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) |