john mat (john_mat)

Race #31

View Pit Stop page for race #31 by john_matGhost race

View profile for john mat (john_mat)

Official speed 32.23 wpm (68.14 seconds elapsed during race)
Race Start February 6, 2023 3:40:10pm UTC
Race Finish February 6, 2023 3:41:18pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 12.89
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)