tsds (tsds)

Race #175

View Pit Stop page for race #175 by tsdsGhost race

View profile for tsds (tsds)

Official speed 43.43 wpm (50.56 seconds elapsed during race)
Race Start September 29, 2021 2:39:40pm UTC
Race Finish September 29, 2021 2:40:30pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 17.37
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)