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 | 2024-07-05 03:39:19 | 32.39 | 94.6% |
| 6 | 2024-07-05 03:37:52 | 27.16 | 90% |
| 5 | 2024-07-05 03:32:29 | 24.00 | 92.9% |