J Gary (jgary199)

Race #14

View Pit Stop page for race #14 by jgary199Ghost race

View profile for J Gary (jgary199)

Official speed 27.25 wpm (80.59 seconds elapsed during race)
Race Start May 22, 2025 1:03:01am UTC
Race Finish May 22, 2025 1:04:22am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 10.90
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)