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 |
---|---|---|---|
47 | 2021-11-30 19:51:55 | 55.42 | 94% |
37 | 2021-11-20 23:25:40 | 53.86 | 95% |
9 | 2021-09-22 19:11:09 | 60.31 | 98% |