(nullchilly)

Race #3

View Pit Stop page for race #3 by nullchillyGhost race

View profile for (nullchilly)

Official speed 61.08 wpm (35.95 seconds elapsed during race)
Race Start July 1, 2022 7:29:20am UTC
Race Finish July 1, 2022 7:29:56am UTC
Outcome No win (2 of 2)
Opponents 1. poem (75.47 wpm)
Accuracy 96.0%
Points 24.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)