View Pit Stop page for race #845 by mayham92 — Ghost race
View profile for Mikhail (mayham92)
Official speed | 55.81 wpm (39.35 seconds elapsed during race) |
---|---|
Race Start | May 25, 2022 11:14:01am UTC |
Race Finish | May 25, 2022 11:14:40am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 22.32 |
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) |