Billy (wayrus)

Race #8

View Pit Stop page for race #8 by wayrusGhost race

View profile for Billy (wayrus)

Official speed 49.56 wpm (44.31 seconds elapsed during race)
Race Start February 9, 2023 1:02:00am UTC
Race Finish February 9, 2023 1:02:45am UTC
Outcome Win (1 of 2)
Opponents 2. aeheffington (37.76 wpm)
Accuracy 94.0%
Points 19.82
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)