Mikhail (mayham92)

Race #696

View Pit Stop page for race #696 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 62.58 wpm (35.09 seconds elapsed during race)
Race Start February 19, 2022 1:33:42pm UTC
Race Finish February 19, 2022 1:34:18pm UTC
Outcome No win (3 of 3)
Accuracy 99.0%
Points 25.03
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)