python 事件 响应 钩子 even

发布时间:2019-07-25 09:18:14编辑:auto阅读(1636)

    # -*- coding: utf-8 -*-
    import requests
    
    def get_key_info(response, *args, **kwargs):
        """callback function"""
        print response.headers['Content-Type']
    
    def main():
        """
        主程序
    
        """
        requests.get('http://www.baidu.com', hooks=dict(response=get_key_info))
    
    
    main()

关键字