Skip to content
/ up Public
forked from xu3352/fileshare

a python file upload/download web server

Notifications You must be signed in to change notification settings

sahildatax/up

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fileshare

a simple python file upload/download web server

一个精简的Python版 上传/下载 的Web服务器

上传的文件会放到 uploads 目录下, 按照创建时间倒序展示

Change port

filesserver.py : chang the port as you like

修改端口

if __name__ == "__main__":
    # server start up
    app.run(host='0.0.0.0', port=8080, debug=True)

Start Server

依赖包: flask

# 安装 flask 等依赖包
$ python -m pip install -r requirements.txt

启动服务

# start server
$ python filesserver.py

Snapshot

浏览器访问: 127.0.0.1:8080

效果图

About

a python file upload/download web server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 69.5%
  • HTML 17.7%
  • Python 7.6%
  • CSS 5.2%