anshul (anshkool)

Race #49

View Pit Stop page for race #49 by anshkoolGhost race

View profile for anshul (anshkool)

Official speed 30.59 wpm (71.79 seconds elapsed during race)
Race Start October 6, 2022 12:00:10pm UTC
Race Finish October 6, 2022 12:01:21pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 12.24
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)