View Pit Stop page for race #1 by ruohola — Ghost race
View profile for ruohola (ruohola)
Official speed | 60.30 wpm (36.42 seconds elapsed during race) |
---|---|
Race Start | October 20, 2021 10:13:56am UTC |
Race Finish | October 20, 2021 10:14:32am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 24.12 |
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) |