View Pit Stop page for race #13 by concurrent — Ghost race
View profile for account deleted (concurrent)
Official speed | 43.52 wpm (50.46 seconds elapsed during race) |
---|---|
Race Start | January 3, 2020 3:30:48pm UTC |
Race Finish | January 3, 2020 3:31:38pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 17.41 |
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) |