View Pit Stop page for race #1 by the_op_programmer — Ghost race
View profile for Started from 3wpm (the_op_programmer)
Official speed | 30.43 wpm (72.17 seconds elapsed during race) |
---|---|
Race Start | May 24, 2023 4:40:24am UTC |
Race Finish | May 24, 2023 4:41:37am UTC |
Outcome | Win (1 of 2) |
Accuracy | 95.0% |
Points | 12.17 |
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) |