View Pit Stop page for race #14 by nabineo — Ghost race
View profile for Nabin (nabineo)
Official speed | 26.05 wpm (84.30 seconds elapsed during race) |
---|---|
Race Start | March 23, 2020 11:51:41am UTC |
Race Finish | March 23, 2020 11:53:05am UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 10.42 |
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) |