Georgios (sophomaniac)

Race #1

View Pit Stop page for race #1 by sophomaniacGhost race

View profile for Georgios (sophomaniac)

Official speed 53.41 wpm (41.12 seconds elapsed during race)
Race Start February 8, 2023 3:48:30pm UTC
Race Finish February 8, 2023 3:49:11pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 21.36
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)