Mikhail (mayham92)

Race #192

View Pit Stop page for race #192 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 60.73 wpm (36.16 seconds elapsed during race)
Race Start November 8, 2021 1:37:19pm UTC
Race Finish November 8, 2021 1:37:55pm UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 24.29
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)