View Pit Stop page for race #5 by nullchilly — Ghost race
Official speed | 61.96 wpm (35.44 seconds elapsed during race) |
---|---|
Race Start | July 1, 2022 7:37:36am UTC |
Race Finish | July 1, 2022 7:38:11am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. poem (71.60 wpm) |
Accuracy | 97.0% |
Points | 24.78 |
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) |