Lucas (clausm)

Race #39

View Pit Stop page for race #39 by clausmGhost race

View profile for Lucas (clausm)

Official speed 35.07 wpm (62.62 seconds elapsed during race)
Race Start October 27, 2025 4:31:52pm UTC
Race Finish October 27, 2025 4:32:55pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 14.03
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)