(nullchilly)

Race #10

View Pit Stop page for race #10 by nullchillyGhost race

View profile for (nullchilly)

Official speed 59.68 wpm (36.80 seconds elapsed during race)
Race Start July 1, 2022 7:47:28am UTC
Race Finish July 1, 2022 7:48:04am UTC
Outcome No win (2 of 2)
Opponents 1. poem (74.26 wpm)
Accuracy 95.0%
Points 23.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)