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 |
|---|---|---|---|
| 7 | 2023-11-15 10:32:41 | 44.54 | 94.7% |
| 6 | 2023-11-15 10:30:12 | 39.96 | 94.4% |
| 2 | 2023-10-24 05:29:24 | 34.03 | 93.1% |