View Pit Stop page for race #3 by typerzzz7 — Ghost race
View profile for Alif Sha (typerzzz7)
Official speed | 16.56 wpm (132.61 seconds elapsed during race) |
---|---|
Race Start | June 15, 2023 4:50:42pm UTC |
Race Finish | June 15, 2023 4:52:55pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 93.0% |
Points | 6.62 |
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) |