Jon (jonsport)

Race #39

View Pit Stop page for race #39 by jonsportGhost race

View profile for Jon (jonsport)

Official speed 61.29 wpm (35.83 seconds elapsed during race)
Race Start July 6, 2022 4:06:32pm UTC
Race Finish July 6, 2022 4:07:08pm UTC
Outcome Win (1 of 3)
Opponents 3. royaljaat (48.25 wpm)
Accuracy 95.0%
Points 24.51
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)