Mikhail (mayham92)

Race #155

View Pit Stop page for race #155 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 56.66 wpm (38.76 seconds elapsed during race)
Race Start November 4, 2021 8:12:01pm UTC
Race Finish November 4, 2021 8:12:40pm UTC
Outcome No win (3 of 3)
Accuracy 100.0%
Points 22.66
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)