├── .gitignore ├── README.md ├── app.py ├── static └── js │ └── qiniu-token.js └── templates ├── index.html ├── layout.html └── myfile.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverstd/qiniuimgbed/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverstd/qiniuimgbed/HEAD/app.py -------------------------------------------------------------------------------- /static/js/qiniu-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverstd/qiniuimgbed/HEAD/static/js/qiniu-token.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverstd/qiniuimgbed/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverstd/qiniuimgbed/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/myfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloverstd/qiniuimgbed/HEAD/templates/myfile.html --------------------------------------------------------------------------------