(timjeffery44)

Race #13

View Pit Stop page for race #13 by timjeffery44Ghost race

View profile for (timjeffery44)

Official speed 37.16 wpm (59.10 seconds elapsed during race)
Race Start May 3, 2019 3:42:12am UTC
Race Finish May 3, 2019 3:43:11am UTC
Outcome No win (3 of 3)
Accuracy 89.0%
Points 14.87
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)