jason (jasontime12345)

Race #4

View Pit Stop page for race #4 by jasontime12345Ghost race

View profile for jason (jasontime12345)

Official speed 37.49 wpm (58.58 seconds elapsed during race)
Race Start May 8, 2018 10:48:09pm UTC
Race Finish May 8, 2018 10:49:07pm UTC
Outcome Win (1 of 2)
Accuracy 92.0%
Points 14.99
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)