(atorpy)

Race #11

View Pit Stop page for race #11 by atorpyGhost race

View profile for (atorpy)

Official speed 39.83 wpm (55.13 seconds elapsed during race)
Race Start May 23, 2022 5:24:27pm UTC
Race Finish May 23, 2022 5:25:22pm UTC
Outcome No win (1 of 1)
Accuracy 93.0%
Points 15.93
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)