(boy_314)

Race #91

View Pit Stop page for race #91 by boy_314Ghost race

View profile for (boy_314)

Official speed 72.46 wpm (30.31 seconds elapsed during race)
Race Start October 17, 2019 8:41:36pm UTC
Race Finish October 17, 2019 8:42:07pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 28.98
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)