Python建立本地服务器

作者: 世外大帝 | 来源:发表于2017-12-19 15:46 被阅读4次
    #!/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. 内网限制的话可以做个内网穿透
    """
    
    
    文件服务器文件服务器

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

    相关文章

      网友评论

        本文标题:Python建立本地服务器

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