您的意思是向另一个模块中的每个函数添加装饰器?你可以用一个类来模拟它:
class RequestsProxy(object):
def __init__(self):
self.special_sauce_decorator = special_sauce_indeed()
self._requests = __import__("requests")
def __getattr__(self, attrname):
val = getattr(self._requests, attrname)
if callable(val):
return self.special_sauce_decorator(val)
return val
示例用法:
>>> def special_sauce_indeed():
def decorator(f):
def wrapped(*args, **kwargs):
print 'wrapped'
return f(*args, **kwargs)
return wrapped
return decorator
>>> class OsProxy(object):
def __init__(self):
self.special_sauce_decorator = special_sauce_indeed()
self._requests = __import__("os")
def __getattr__(self, attrname):
val = getattr(self._requests, attrname)
if callable(val):
return self.special_sauce_decorator(val)
return val
>>> os = OsProxy()
>>> os.listdir(".")
wrapped
['DLLs', 'Doc', 'faiojerf.py', 'func_counter_test.py', 'include', 'inet_time.py', 'kcol.py', 'Lib', 'libs', 'LICENSE.txt', 'memoize_test.py', 'minpy.py', 'NEWS.txt', 'numpy-wininst.log', 'paren_test.py', 'PIL-wininst.log', 'psycopg2-wininst.log', 'python.exe', 'pythonw.exe', 'pywin32-wininst.log', 'README.txt', 'Removenumpy.exe', 'RemovePIL.exe', 'Removepsycopg2.exe', 'Removepywin32.exe', 'Removescipy.exe', 'Removesetuptools.exe', 'scipy-wininst.log', 'Scripts', 'setuptools-wininst.log', 'slots.py', 'so1.py', 'staticvar.py', 'summing.py', 'taojiwjiot.,py', 'tcl', 'templol.py', 'test.py', 'thunkify_test.py', 'TicketNumberGenerator.py', 'Tools', 'w9xpopen.exe', 'wordcount.py']