View Pit Stop page for race #5 by i_s_h_a_n — Ghost race
View profile for I (i_s_h_a_n)
Official speed | 48.86 wpm (44.94 seconds elapsed during race) |
---|---|
Race Start | May 30, 2023 7:20:24pm UTC |
Race Finish | May 30, 2023 7:21:09pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 19.54 |
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) |