mathew (foxxworx)

Race #2

View Pit Stop page for race #2 by foxxworxGhost race

View profile for mathew (foxxworx)

Official speed 28.57 wpm (76.86 seconds elapsed during race)
Race Start June 9, 2023 12:13:06am UTC
Race Finish June 9, 2023 12:14:23am UTC
Outcome No win (2 of 2)
Opponents 1. shalomski (32.75 wpm)
Accuracy 94.0%
Points 11.43
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)