View Pit Stop page for race #1 by deeefenestration — Ghost race
View profile for Defenestration (deeefenestration)
Official speed | 28.80 wpm (76.25 seconds elapsed during race) |
---|---|
Race Start | March 11, 2022 6:34:32pm UTC |
Race Finish | March 11, 2022 6:35:48pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 90.0% |
Points | 11.52 |
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) |