colemakwannabe (colemakwannabe)

Race #2

View Pit Stop page for race #2 by colemakwannabeGhost race

View profile for colemakwannabe (colemakwannabe)

Official speed 26.04 wpm (84.33 seconds elapsed during race)
Race Start May 22, 2023 4:10:29am UTC
Race Finish May 22, 2023 4:11:53am UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 10.42
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)