码迷,mamicode.com
首页 > 编程语言 > 详细

Python创建简单的HTTP服务

时间:2016-12-29 08:36:43      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:python   http服务   http.server   simplehttpserver   

python2中:

  python -m SimpleHTTPServer 80  # 默认端口是8000,目录是当前目录

  如果当前文件夹有index.html文件,会默认显示该文件,否则,会以文件列表的形式显示目录下所有文件。这样已经实现了最基本的文件分享的目的


python3中:

   python -m http.server 80 


import http.server

PORT = 250
Handler = http.server.SimpleHTTPRequestHandler
httpd = http.server.HTTPServer(("", PORT), Handler)
print("serving at port", PORT)
httpd.serve_forever()



本文出自 “baby神” 博客,请务必保留此出处http://babyshen.blog.51cto.com/8405584/1887096

Python创建简单的HTTP服务

标签:python   http服务   http.server   simplehttpserver   

原文地址:http://babyshen.blog.51cto.com/8405584/1887096

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!