美文网首页
python 钩子函数

python 钩子函数

作者: 思考的小妮子 | 来源:发表于2019-08-14 13:12 被阅读0次

    eg:

    import requests

    def get_key_info(response,*args,**kwargs):

            #回调函数

            print(xxxx + response.code)

    def main():

            requests.geturl('http://baidu.com',  hooks = dict(response=get_key_info) )

    main()

    相关文章

      网友评论

          本文标题:python 钩子函数

          本文链接:https://www.haomeiwen.com/subject/yydgjctx.html