spondunoob (spondulix)

Race #351

View Pit Stop page for race #351 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 92.28 wpm (23.80 seconds elapsed during race)
Race Start August 15, 2019 3:30:40pm UTC
Race Finish August 15, 2019 3:31:04pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 36.91
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)