Stats (statistics)

Race #1

View Pit Stop page for race #1 by statisticsGhost race

View profile for Stats (statistics)

Official speed 98.30 wpm (22.34 seconds elapsed during race)
Race Start September 30, 2025 4:33:05am UTC
Race Finish September 30, 2025 4:33:27am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 39.32
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)