tsds (tsds)

Race #249

View Pit Stop page for race #249 by tsdsGhost race

View profile for tsds (tsds)

Official speed 49.67 wpm (44.21 seconds elapsed during race)
Race Start November 29, 2021 3:44:57pm UTC
Race Finish November 29, 2021 3:45:41pm UTC
Outcome Win (1 of 2)
Opponents 2. seyranyandavid (45.21 wpm)
Accuracy 98.0%
Points 19.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)