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 |
---|---|---|---|
42 | 2023-08-14 19:49:59 | 27.03 | 91.8% |
32 | 2023-08-13 16:41:18 | 26.14 | 91% |
24 | 2023-07-25 00:13:29 | 25.04 | 93.3% |