NSM101 (nsm101)

Race #2

View Pit Stop page for race #2 by nsm101Ghost race

View profile for NSM101 (nsm101)

Official speed 18.14 wpm (121.06 seconds elapsed during race)
Race Start May 27, 2025 5:56:00am UTC
Race Finish May 27, 2025 5:58:02am UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 7.26
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)