View Pit Stop page for race #1 by bryan1234chandler — Ghost race
View profile for bryan (bryan1234chandler)
Official speed | 20.26 wpm (108.39 seconds elapsed during race) |
---|---|
Race Start | September 11, 2025 6:39:21pm UTC |
Race Finish | September 11, 2025 6:41:09pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 8.11 |
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) |