美文网首页
python学习笔记9——requests 获取当前ip

python学习笔记9——requests 获取当前ip

作者: 满船清梦压星河ya_ | 来源:发表于2018-08-15 10:59 被阅读0次
    import requests
    
    r = requests.get('https://www.baidu.com/', stream=True)
    print(r.raw._connection.sock.getpeername()[0])
    print(r.raw._connection.sock.getsockname()[0])
    

    相关文章

      网友评论

          本文标题:python学习笔记9——requests 获取当前ip

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