Charlie (hobboloydn)

Race #76

View Pit Stop page for race #76 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 53.21 wpm (41.27 seconds elapsed during race)
Race Start April 17, 2025 12:51:21pm UTC
Race Finish April 17, 2025 12:52:02pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 21.28
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)