slayerofthend (slayerofthend)

Race #2

View Pit Stop page for race #2 by slayerofthendGhost race

View profile for slayerofthend (slayerofthend)

Official speed 54.89 wpm (40.01 seconds elapsed during race)
Race Start August 8, 2022 9:29:20pm UTC
Race Finish August 8, 2022 9:30:00pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 21.96
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)