Abdullah (abdullah011)

Race #3

View Pit Stop page for race #3 by abdullah011Ghost race

View profile for Abdullah (abdullah011)

Official speed 20.33 wpm (108.02 seconds elapsed during race)
Race Start May 25, 2025 11:22:26am UTC
Race Finish May 25, 2025 11:24:14am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 8.13
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)