View Pit Stop page for race #24 by programmerpractice — Ghost race
View profile for symbolsnumbers (programmerpractice)
| Official speed | 39.27 wpm (55.92 seconds elapsed during race) |
|---|---|
| Race Start | June 2, 2023 5:35:10pm UTC |
| Race Finish | June 2, 2023 5:36:06pm UTC |
| Outcome | Win (1 of 4) |
| Accuracy | 93.0% |
| Points | 15.71 |
| 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) |