Charlie (hobboloydn)

Race #202

View Pit Stop page for race #202 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 53.55 wpm (41.01 seconds elapsed during race)
Race Start May 5, 2025 4:00:25pm UTC
Race Finish May 5, 2025 4:01:06pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 21.42
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)