python中__call__方法


在 Python 中提供了__call__ 方法,允许创建可调用的对象(实例)。如果类中实现了 __call__ 方法,则可以像使用函数一样使用类。

例如简单的封装一个接口 get/post 方法:

 1 import requests
 2 
 3 class Run():
 4     def __init__(self):
 5         pass
 6 
 7     # __call__ 方法使用
 8     def __call__(self, url, method='post', data = None):
 9         if method == "get":
10             res = requests.get(url,data)
11         else:
12             res = requests.post(url,data)
13         return res
14 
15     
16 
17 if __name__ == "__main__":
18     url = "https://translate.google.com/"
19 
20     r = Run()
21     # 使用并且打印结果
22     print(r(url, 'get'))
23 
24 
25 # 打印结果: <Response [200]>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM