View Pit Stop page for race #9 by code_vansh — Ghost race
View profile for Devansh Karia (code_vansh)
Official speed | 27.72 wpm (79.22 seconds elapsed during race) |
---|---|
Race Start | June 10, 2023 7:22:50pm UTC |
Race Finish | June 10, 2023 7:24:09pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 89.0% |
Points | 11.09 |
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) |