View Pit Stop page for race #25 by lesirh — Ghost race
View profile for LeSirH (lesirh)
Official speed | 71.54 wpm (30.70 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 11:27:12pm UTC |
Race Finish | August 8, 2019 11:27:43pm UTC |
Outcome | No win (3 of 4) |
Opponents |
1. arc_sec (103.55 wpm) 2. spondulix (90.94 wpm) 4. vfctyrant (54.36 wpm) |
Accuracy | 95.0% |
Points | 28.62 |
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) |