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 |
|---|---|---|---|
| 38 | 2024-01-06 03:12:14 | 47.07 | 94.8% |
| 12 | 2024-01-04 09:29:33 | 40.47 | 95.7% |
| 3 | 2024-01-04 09:12:55 | 38.89 | 94.7% |