Mikhail (mayham92)

Race #264

View Pit Stop page for race #264 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 56.32 wpm (38.99 seconds elapsed during race)
Race Start November 20, 2021 10:20:58pm UTC
Race Finish November 20, 2021 10:21:37pm UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 22.53
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)