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 | 2015-09-22 22:14:23 | 38.00 | 92% |
| 8 | 2015-09-03 22:19:36 | 39.05 | 96% |
| 6 | 2015-09-03 22:15:37 | 31.78 | 91% |