Parag (parag776)

Race #2

View Pit Stop page for race #2 by parag776Ghost race

View profile for Parag (parag776)

Official speed 46.52 wpm (47.21 seconds elapsed during race)
Race Start July 31, 2022 5:41:17am UTC
Race Finish July 31, 2022 5:42:04am UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 18.61
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)