kostis (oh_yeah_go)

Race #27

View Pit Stop page for race #27 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 34.33 wpm (63.97 seconds elapsed during race)
Race Start January 24, 2022 4:58:40pm UTC
Race Finish January 24, 2022 4:59:44pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 13.73
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)