Louis (louistan111)

Race #8

View Pit Stop page for race #8 by louistan111Ghost race

View profile for Louis (louistan111)

Official speed 42.65 wpm (51.49 seconds elapsed during race)
Race Start November 23, 2022 4:53:25am UTC
Race Finish November 23, 2022 4:54:16am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 17.06
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)