View Pit Stop page for race #25 by hauhauh — Ghost race
View profile for Hau (hauhauh)
Official speed | 33.86 wpm (64.86 seconds elapsed during race) |
---|---|
Race Start | September 11, 2021 1:50:45pm UTC |
Race Finish | September 11, 2021 1:51:50pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 13.54 |
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) |