Ahmed (e_elashra1)

Race #29

View Pit Stop page for race #29 by e_elashra1Ghost race

View profile for Ahmed (e_elashra1)

Official speed 33.97 wpm (64.65 seconds elapsed during race)
Race Start May 21, 2025 2:37:31pm UTC
Race Finish May 21, 2025 2:38:36pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 13.59
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)