kostis (oh_yeah_go)

Race #7

View Pit Stop page for race #7 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 34.68 wpm (63.32 seconds elapsed during race)
Race Start January 23, 2022 5:48:14pm UTC
Race Finish January 23, 2022 5:49:17pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 13.87
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)