├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── flask_qiniustorage.py ├── setup.cfg ├── setup.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | venv 3 | *.py[cod] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csuzhangxc/Flask-QiniuStorage/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csuzhangxc/Flask-QiniuStorage/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csuzhangxc/Flask-QiniuStorage/HEAD/README.rst -------------------------------------------------------------------------------- /flask_qiniustorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csuzhangxc/Flask-QiniuStorage/HEAD/flask_qiniustorage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csuzhangxc/Flask-QiniuStorage/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csuzhangxc/Flask-QiniuStorage/HEAD/tests.py --------------------------------------------------------------------------------