View Pit Stop page for race #3 by gdhameeja — Ghost race
View profile for Gaurav (gdhameeja)
Official speed | 58.23 wpm (37.71 seconds elapsed during race) |
---|---|
Race Start | July 19, 2021 6:22:14pm UTC |
Race Finish | July 19, 2021 6:22:51pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 23.29 |
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) |