Augusto Aguilar (fa1progra)

Race #12

View Pit Stop page for race #12 by fa1prograGhost race

View profile for Augusto Aguilar (fa1progra)

Official speed 25.25 wpm (86.97 seconds elapsed during race)
Race Start May 15, 2025 12:46:53am UTC
Race Finish May 15, 2025 12:48:20am UTC
Outcome No win (2 of 3)
Accuracy 89.0%
Points 10.10
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)