View Pit Stop page for race #5 by equitydeadlock — Ghost race
View profile for EquityDeadlock (equitydeadlock)
Official speed | 48.30 wpm (45.47 seconds elapsed during race) |
---|---|
Race Start | May 6, 2022 3:21:00am UTC |
Race Finish | May 6, 2022 3:21:45am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 19.32 |
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) |