View Pit Stop page for race #55 by harshit712 — Ghost race
View profile for harshit (harshit712)
Official speed | 48.35 wpm (45.42 seconds elapsed during race) |
---|---|
Race Start | April 14, 2023 7:50:24pm UTC |
Race Finish | April 14, 2023 7:51:09pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 19.34 |
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) |