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学习群: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. 内网限制的话可以做个内网穿透
"""

Python建立本地服务器_第1张图片
文件服务器

其他Demo:https://github.com/seeways/PythonDemo

你可能感兴趣的:(Python建立本地服务器)