Charlie (hobboloydn)

Race #101

View Pit Stop page for race #101 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 50.91 wpm (43.13 seconds elapsed during race)
Race Start April 18, 2025 9:56:32pm UTC
Race Finish April 18, 2025 9:57:15pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 20.36
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)