Csongor (flashrane)

Race #5

View Pit Stop page for race #5 by flashraneGhost race

View profile for Csongor (flashrane)

Official speed 50.49 wpm (43.49 seconds elapsed during race)
Race Start October 7, 2025 1:02:29pm UTC
Race Finish October 7, 2025 1:03:12pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 20.20
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)