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 |
---|---|---|---|
20 | 2024-09-25 19:38:44 | 40.41 | 93% |
14 | 2024-09-25 06:49:49 | 32.26 | 89% |
4 | 2024-09-25 06:28:04 | 34.63 | 90.4% |