Python建立本地服务器
#!/usr/bin/env python# -*- coding: utf-8 -*-# Created by TaoYuan on 2017/12/19 0019.# @Link: http://blog.csdn.net/lftaoyuan# Github: https://github.com/seeways# @Remark: Python学习群:3158574
·
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Created by TaoYuan on 2017/12/19 0019.
# @Link : http://blog.csdn.net/lftaoyuan
# Github : https://github.com/seeways
# @Remark : Python学习群:315857408
"""
# 本地文件服务器
1. cmd到文件目录下
2. python -m http.server 80 (python2使用 python -m SimpleHTTPServer 8080)
3. 可以打开浏览器访问了,默认80不需要输入端口号
4. your IP(127.0.0.1 or localhost)
5. 内网限制的话可以做个内网穿透
"""
更多推荐
已为社区贡献6条内容
所有评论(0)