Charlie (hobboloydn)

Race #166

View Pit Stop page for race #166 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 48.73 wpm (45.06 seconds elapsed during race)
Race Start May 2, 2025 12:11:45pm UTC
Race Finish May 2, 2025 12:12:30pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 19.49
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)