View Pit Stop page for race #46 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 41.71 wpm (52.65 seconds elapsed during race) |
---|---|
Race Start | May 24, 2025 10:57:38pm UTC |
Race Finish | May 24, 2025 10:58:31pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 16.68 |
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) |