how to use socket fetch webpage use python

前端 未结 1 1107
醉话见心
醉话见心 2020-12-19 07:29

i know use urllib2 to fetch webpage is easy, but i want to know is there an sample for use socket implement fetch webpage function, i google a lot,i didn\'t found any exampl

相关标签:
1条回答
  • 2020-12-19 08:32

    Here's something I whipped up. It doesn't catch exceptions to handle errors. YMMV

    import socket
    request = b"GET / HTTP/1.1\nHost: stackoverflow.com\n\n"
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.connect(("stackoverflow.com", 80))
    s.send(request)
    result = s.recv(10000)
    while (len(result) > 0):
        print(result)
        result = s.recv(10000)   
    
    0 讨论(0)
提交回复
热议问题