Mikhail (mayham92)

Race #306

View Pit Stop page for race #306 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 53.99 wpm (40.67 seconds elapsed during race)
Race Start November 26, 2021 4:09:27pm UTC
Race Finish November 26, 2021 4:10:08pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 21.60
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)