View Pit Stop page for race #3 by hardatwork — Ghost race
View profile for HardestCoworkerEver (hardatwork)
Official speed | 42.61 wpm (51.54 seconds elapsed during race) |
---|---|
Race Start | April 26, 2022 7:57:34pm UTC |
Race Finish | April 26, 2022 7:58:25pm UTC |
Outcome | Win (1 of 3) |
Opponents |
2. nguye205 (39.85 wpm) |
Accuracy | 91.0% |
Points | 17.04 |
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) |