Fear (johnwick89)

Race #5

View Pit Stop page for race #5 by johnwick89Ghost race

View profile for Fear (johnwick89)

Official speed 34.09 wpm (64.42 seconds elapsed during race)
Race Start October 11, 2025 10:27:04pm UTC
Race Finish October 11, 2025 10:28:08pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 13.64
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)