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 |
|---|---|---|---|
| 4 | 2024-09-09 02:49:44 | 35.85 | 93% |
| 3 | 2024-09-09 02:44:31 | 32.38 | 91.6% |
| 2 | 2024-09-09 02:37:58 | 30.04 | 90.5% |