python 编写简单网页服务器

作者: Python资料 | 来源:发表于2018-06-02 08:36 被阅读15次

IDE:Pycharm

sever.py

[python] view plain copy

#!/bin/python  

#-*- coding: UTF-8 -*-  

#文件名:server.py  

#create by wzh 2017/10/26  

import socket   #导入socket模块  

import re  

from multiprocessing import Process #导入进程模块  

这个python学习(q-u-n):227-435-450 期待大家一起进群交流讨论,讲实话还是一个非常适合学习的地方的。各种入门资料啊,进阶资料啊,框架资料啊 爬虫等等

#设置静态文件根目录  

HTML_ROOT_DIR='./html'  

def handle_client(client_socket):  

"""处理客户端连接请求"""  

request_data=client_socket.recv(1024)  

print(request_data)  

    request_lines=request_data.splitlines()  

for line in request_lines:  

print(line)  

#'GET / HTTP/1.1'  

request_start_line=request_lines[0].decode("utf-8")  

print("*"*10)  

print(request_start_line)  

#提取用户请求的文件名  

file_name=re.match(r"\w+ +(/[^ ]*) ",str(request_start_line)).group(1)  

if "/" == file_name:  

file_name='/index.html'  

#打开文件,读取内容  

try:  

file=open(HTML_ROOT_DIR+file_name,"rb")  

except IOError:  

response_start_line="HTTP/1.1 404 Not Found\r\n"  

response_heads="Server: My server\r\n"  

response_body="The file not found!"  

else:  

        file_data=file.read()  

        file.close()  

response_start_line="HTTP/1.1 200 ok\r\n"  

response_heads="Server: My server\r\n"  

response_body=file_data.decode("utf-8")  

response=response_start_line+response_heads+"\r\n"+response_body  

print("response data:",response)  

client_socket.send(bytes(response,"utf-8"))  

    client_socket.close()  

if __name__=="__main__":         #如果直接运行本文件,那么__name__为__main__(此时才运行下面的程序),否则为对应包名  

s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)# 创建socket对象  

s.setsockopt(socket.SOL_SOCKET,socket.SO_REUSEADDR,1)  

#host = socket.gethostname()  # 获取本地主机名  

port =1212  #  

#print(host)  

s.bind(("", port))# 绑定端口  

s.listen(5)  

while True:  

c,addr=s.accept()#建立客户端连接  

print('连接地址',addr)  

handle_client_process=Process(target=handle_client,args=(c,))#ALT+ENTER快捷键生成函数  

        handle_client_process.start()  

        c.close()  

index.html

html><html lang="en"><head><meta charset="UTF-8"><title>My Webtitle>head><h1 align="center">welcome!h1><p align="center">这是一个神奇的网站!p><body>body>html>

运行server.py

在浏览器中输入localhost:1212

相关文章

  • python 编写简单网页服务器

    IDE:Pycharm sever.py [python]view plaincopy #!/bin/python...

  • Tornado初学篇

    Tornado是一款由Python编写的,相对简单的非阻塞式Web服务器。和现在的主流Web服务器框架(包括大多数...

  • 静态、动态网页

    静态网页资源 什么是静态网页资源?静态网页资源是开发者编写的,放在服务器上看到的是什么显示的就是什么,一旦编写完成...

  • python setup.py 学习资料

    python 编写简单的setup.py

  • 【坑】Python3 SimpleHTTPServer

    命令 使用 Python2 建立简单服务器的命令: 使用Python3 建立简单服务器的命令:

  • NODE-WEB01:Node的Web应用服务

      Node作为一门语言也像Java,C#,Python一样编写基于HTTP协议的Web服务器后端应用。原理很简单...

  • python爬虫解决网页重定向问题

    python爬虫解决网页重定向问题 笔者使用python2.7+requests编写爬虫,以下问题针对此情况讨论。...

  • Python 通过sys.argv控制台输入参数

    Python 通过sys.argv控制台输入参数 通过python编写的大型代码往往需要在服务器中运行,而服务器中...

  • JSP

    简介:JavaServerPage,java服务器端网页,本质是一个Servlet,用于简化Servlet编写。 ...

  • 关于Flask Config文档

    在用python flask编写网页,运行时候遇到以下的错误: 为什么这里的'TestingConfig' is ...

网友评论

    本文标题:python 编写简单网页服务器

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