john mat (john_mat)

Race #55

View Pit Stop page for race #55 by john_matGhost race

View profile for john mat (john_mat)

Official speed 32.77 wpm (67.01 seconds elapsed during race)
Race Start February 23, 2023 4:51:19am UTC
Race Finish February 23, 2023 4:52:26am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 13.11
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)