View Pit Stop page for race #1 by sanz80 — Ghost race
View profile for Suman Tiwari (sanz80)
Official speed | 42.50 wpm (51.67 seconds elapsed during race) |
---|---|
Race Start | June 22, 2023 4:04:23am UTC |
Race Finish | June 22, 2023 4:05:15am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 17.00 |
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) |