#!/usr/bin/env python # Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Selects the appropriate scraper for Firefox.""" def GetScraper(version): """Returns the scraper module for the given version. Args: version: version string of IE, or None for most recent Returns: scrape module for given version """ # Pychecker will warn that the parameter is unused; we only # support one version of Firefox at this time # We only have one version of the Firefox scraper for now return __import__("firefox2", globals(), locals(), ['']) # if invoked rather than imported, test if __name__ == "__main__": print GetScraper("2.0.0.6").version