View Pit Stop page for race #4 by tim72 — Ghost race
| Official speed | 39.28 wpm (55.91 seconds elapsed during race) |
|---|---|
| Race Start | January 27, 2023 4:11:14pm UTC |
| Race Finish | January 27, 2023 4:12:10pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.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) |