gaurav (typingnoob2)

Race #3

View Pit Stop page for race #3 by typingnoob2Ghost race

View profile for gaurav (typingnoob2)

Official speed 29.79 wpm (73.72 seconds elapsed during race)
Race Start May 28, 2023 1:34:29pm UTC
Race Finish May 28, 2023 1:35:42pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 11.92
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)