Tahsin (tahsin__1)

Race #12

View Pit Stop page for race #12 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 26.78 wpm (82.00 seconds elapsed during race)
Race Start May 3, 2025 11:13:47am UTC
Race Finish May 3, 2025 11:15:09am UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 10.71
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)