我在写一个 telegram bot ,自己寨了一个小的 lib
class Client:
def callAPI(self, method="getMe", **kwargs):
调用 requests.post(....)
getMe = functools.partialmethod(callAPI, "getMe")
这样是成功的,可以用 getMe=functools.partialmethod 的方法定义一个名为 getMe 但实际上偏函数调用 callAPI 的方法
但是另外几种写法都不对,我不明白为什么: 第一个:
def __getattr__(self, APIname):
return functools.partialmethod(callAPI, APIname)
会导致错误 NameError: name 'callAPI' is not defined 我不明白为什么 getMe 直接赋值的时候可以找到 callAPI 方法,但是在__getattr__函数里就找不到 callAPI 方法,必须用 self.callAPI 的方式来找。是不是因为前者在 class 内,而后者在 method 内的,scope 不同的缘故?
第二个:
def __getattr__(self, APIname):
return functools.partialmethod(self.callAPI, APIname)
c=Client(token="....") c.getMe()会发生 TypeError: 'partialmethod' object is not callable
但是 c.getMe.func() 就可以正常执行
我不明白,为什么直接用 partialmethod 赋值出来那个函数就是 callable 的,但这里用__getattr__返回的却不是 callable 的呢
最后找到正确写法是:
def __getattr__(self, APIname):
return functools.partial(self.callAPI, APIname)
但是该用 partialmethod 的地方用了 partial ,总感觉不正经
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.