View Pit Stop page for race #52 by _unus — Ghost race
Official speed | 35.37 wpm (62.09 seconds elapsed during race) |
---|---|
Race Start | July 4, 2023 8:48:14pm UTC |
Race Finish | July 4, 2023 8:49:16pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. rexwow (54.88 wpm) |
Accuracy | 93.0% |
Points | 14.15 |
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) |