View Pit Stop page for race #161 by sidd_ — Ghost race
Official speed | 92.20 wpm (23.82 seconds elapsed during race) |
---|---|
Race Start | July 20, 2019 5:12:52pm UTC |
Race Finish | July 20, 2019 5:13:16pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. storm (58.16 wpm) |
Accuracy | 96.0% |
Points | 36.88 |
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) |