Abhishek (anthony_stark)

Race #3

View Pit Stop page for race #3 by anthony_starkGhost race

View profile for Abhishek (anthony_stark)

Official speed 30.62 wpm (71.72 seconds elapsed during race)
Race Start August 13, 2019 10:33:06am UTC
Race Finish August 13, 2019 10:34:17am UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 12.25
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)