View Pit Stop page for race #4 by hack89 — Ghost race
View profile for hack89 (hack89)
Official speed | 35.53 wpm (61.81 seconds elapsed during race) |
---|---|
Race Start | January 6, 2022 1:13:49am UTC |
Race Finish | January 6, 2022 1:14:51am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 14.21 |
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) |