View Pit Stop page for race #1 by ferneyr — Ghost race
View profile for Ferney (ferneyr)
Official speed | 57.91 wpm (37.92 seconds elapsed during race) |
---|---|
Race Start | May 23, 2023 9:46:29pm UTC |
Race Finish | May 23, 2023 9:47:07pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 23.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) |