python 기반--간단하게 HTTP 프로 토 콜 구현

753 단어 httppython
직접 코드
# -*- coding: utf-8 -*-
import socket

__author__ = 'lpe234'
__date__ = '2015-03-12'

if __name__ == '__main__':
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sock.bind(('127.0.0.1', 8001))
    sock.listen(5)
    while True:
        connection, address = sock.accept()
        content = connection.recv(1024)
        print content
        connection.settimeout(5)
        connection.send('''HTTP/1.1 200 OK
Context-Type: text/html; charset=utf-8
Server: Python-slp version 1.0
Context-Length:

<h1>Hello world!</h1>''')
        connection.close()

둘째, 주로        보 낸 데이터 HTTP 형식 에 부합 되다
실행 후 브 라 우 저 http:127.0.1:8001 열기 ...하면 된다

좋은 웹페이지 즐겨찾기