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)
| Game | Time | WPM | Accuracy |
|---|---|---|---|
| 14 | 2025-04-27 19:44:58 | 61.99 | 95% |
| 8 | 2025-03-21 15:46:17 | 64.98 | 96% |
| 3 | 2025-03-21 15:40:38 | 59.12 | 93% |