Mikhail (mayham92)

Race #905

View Pit Stop page for race #905 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 57.56 wpm (38.15 seconds elapsed during race)
Race Start November 21, 2022 12:19:34pm UTC
Race Finish November 21, 2022 12:20:12pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 23.02
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)