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 |
---|---|---|---|
10 | 2022-07-01 07:48:04 | 59.68 | 95% |
5 | 2022-07-01 07:38:11 | 61.96 | 97% |
3 | 2022-07-01 07:29:56 | 61.08 | 96% |