spondunoob (spondulix)

Race #445

View Pit Stop page for race #445 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 101.28 wpm (21.68 seconds elapsed during race)
Race Start October 12, 2019 6:55:32pm UTC
Race Finish October 12, 2019 6:55:54pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 40.51
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)