View Pit Stop page for race #5 by devbatra1000 — Ghost race
View profile for tstats[devbatra1000] (devbatra1000)
Official speed | 27.52 wpm (79.80 seconds elapsed during race) |
---|---|
Race Start | June 29, 2022 12:15:21pm UTC |
Race Finish | June 29, 2022 12:16:41pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 11.01 |
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) |