Tadej (sivictank123)

Race #3

View Pit Stop page for race #3 by sivictank123Ghost race

View profile for Tadej (sivictank123)

Official speed 40.61 wpm (54.08 seconds elapsed during race)
Race Start June 15, 2023 11:51:38am UTC
Race Finish June 15, 2023 11:52:32am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 16.24
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)