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 |
|---|---|---|---|
| 87 | 2024-05-16 09:30:26 | 58.04 | 97.1% |
| 61 | 2024-04-24 15:13:43 | 56.86 | 96.6% |
| 60 | 2024-04-23 13:58:46 | 56.41 | 97% |