View Pit Stop page for race #6 by courthepworth — Ghost race
View profile for Abernathy (courthepworth)
Official speed | 52.07 wpm (42.17 seconds elapsed during race) |
---|---|
Race Start | August 27, 2022 9:47:12pm UTC |
Race Finish | August 27, 2022 9:47:55pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 20.83 |
Text | #10005 (Length: 183 characters) 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) |