View Pit Stop page for race #2 by pobato — Ghost race
View profile for pobato (pobato)
Official speed | 18.97 wpm (115.76 seconds elapsed during race) |
---|---|
Race Start | June 15, 2023 8:40:22pm UTC |
Race Finish | June 15, 2023 8:42:18pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 7.59 |
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) |