按照路径加载类
scrapy.utils.misc.load_object
from importlib import import_moduledef load_object(path):"""Load an object given its absolute object path, and return it.object can be the import path of a class, function, variable or aninstance, e.g. 'scrapy.downloadermiddlewares.redirect.RedirectMiddleware'"""try:dot = path.rindex('.')except ValueError:raise ValueError("Error loading object '%s': not a full path" % path)module, name = path[:dot], path[dot + 1:]mod = import_module(module)try:obj = getattr(mod, name)except AttributeError:raise NameError("Module '%s' doesn't define any object named '%s'" % (module, name))return obj

