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 |
|---|---|---|---|
| 11 | 2023-10-08 21:28:54 | 38.42 | 94.4% |
| 6 | 2023-10-08 19:38:29 | 39.99 | 94.5% |
| 2 | 2023-10-08 19:14:07 | 35.07 | 92.3% |
| 1 | 2023-10-08 19:12:28 | 33.32 | 92.8% |