MHill (m_hill)

Race #1

View Pit Stop page for race #1 by m_hillGhost race

View profile for MHill (m_hill)

Official speed 34.84 wpm (63.03 seconds elapsed during race)
Race Start January 27, 2025 4:15:58am UTC
Race Finish January 27, 2025 4:17:01am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 13.94
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)