Charlie (hobboloydn)

Race #6

View Pit Stop page for race #6 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 53.98 wpm (40.68 seconds elapsed during race)
Race Start April 8, 2025 7:39:31pm UTC
Race Finish April 8, 2025 7:40:12pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 21.59
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)