tsds (tsds)

Race #4

View Pit Stop page for race #4 by tsdsGhost race

View profile for tsds (tsds)

Official speed 43.00 wpm (51.07 seconds elapsed during race)
Race Start September 4, 2021 12:00:41pm UTC
Race Finish September 4, 2021 12:01:32pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 17.20
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)