J Gary (jgary199)

Race #37

View Pit Stop page for race #37 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 38.50 wpm (57.04 seconds elapsed during race)
Race Start May 24, 2025 3:08:18pm UTC
Race Finish May 24, 2025 3:09:15pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 15.40
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)