View Pit Stop page for race #2 by mcc_sasuke — Ghost race
View profile for Son (mcc_sasuke)
Official speed | 46.44 wpm (47.29 seconds elapsed during race) |
---|---|
Race Start | March 26, 2025 1:39:27pm UTC |
Race Finish | March 26, 2025 1:40:14pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 18.58 |
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) |