cabro (mdrmono)

Race #2

View Pit Stop page for race #2 by mdrmonoGhost race

View profile for cabro (mdrmono)

Official speed 55.09 wpm (39.86 seconds elapsed during race)
Race Start June 5, 2025 12:39:34am UTC
Race Finish June 5, 2025 12:40:13am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 22.04
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)