socket 模拟 HTTP请求

Posted welan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了socket 模拟 HTTP请求相关的知识,希望对你有一定的参考价值。

一、socket介绍

二、python socket编程

二、socket 模拟 HTTP请求

import socket
from urllib.parse import urlparse


class ParserUrl(object):
    '''
    对url进行解析,并返回域名和路径
    '''

    def __init__(self, url):
        self.url = url

    def get_host_path(self):
        parser_url = urlparse(self.url)
        host, path = parser_url.netloc, parser_url.path
        if path:
            return host, path
        else:
            return host, '/'


class SocketHttp(object):
    '''
    需要一个ParserUrl对象,获取host和path
    建立连接返回http response字符串
    http数据传递的时是以字节为单位的,所以需要编码
    '''

    def __init__(self, parser_url):
        self.host, self.path = parser_url.get_host_path()


    def set_socket(self):
        self.client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        self.client.connect((self.host, 80))
        self.client.send("GET {} HTTP/1.1
Host:{}
Connection:close

".format(self.path, self.host).encode("utf8"))

    @property
    def data(self):
        self.set_socket()
        data = b""
        while True:
            d = self.client.recv(1024)
            if d:
                data += d
            else:
                break
        self.close_socket()
        return data.decode("utf8")

    @property
    def html_content(self):
        html_data = self.data
        return html_data.split("

")[1]

    def close_socket(self):
        self.client.close()


if __name__ == "__main__":
    url = ParserUrl('https://www.baidu.com/')
    socket_http = SocketHttp(url)
    print(socket_http.html_content)

返回结果

技术分享图片

返回正常的字符串

以上是关于socket 模拟 HTTP请求的主要内容,如果未能解决你的问题,请参考以下文章

C#怎么用Socket模拟 HTTP请求

python socket 模拟http请求

socket模拟发送http请求

Socket 模拟HTTP客户端请求

PHP+SOCKET 模拟HTTP请求

socket 模拟 HTTP请求