NSM101 (nsm101)

Race #15

View Pit Stop page for race #15 by nsm101Ghost race

View profile for NSM101 (nsm101)

Official speed 19.94 wpm (110.13 seconds elapsed during race)
Race Start June 6, 2025 1:17:40pm UTC
Race Finish June 6, 2025 1:19:30pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 7.97
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)