View Pit Stop page for race #1 by _mhjim_ — Ghost race
View profile for M.H.Jim (_mhjim_)
Official speed | 37.45 wpm (58.64 seconds elapsed during race) |
---|---|
Race Start | October 13, 2025 5:34:04pm UTC |
Race Finish | October 13, 2025 5:35:03pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 14.98 |
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) |