├── .gitignore ├── README.md ├── requirements.txt ├── runserver.py └── uploadr ├── __init__.py ├── app.py ├── static ├── css │ └── style.css ├── js │ ├── jquery-2.1.1.min.js │ └── uploadr.js └── uploads │ └── .dummy └── templates ├── files.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/runserver.py -------------------------------------------------------------------------------- /uploadr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploadr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/uploadr/app.py -------------------------------------------------------------------------------- /uploadr/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/uploadr/static/css/style.css -------------------------------------------------------------------------------- /uploadr/static/js/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/uploadr/static/js/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /uploadr/static/js/uploadr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/uploadr/static/js/uploadr.js -------------------------------------------------------------------------------- /uploadr/static/uploads/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploadr/templates/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/uploadr/templates/files.html -------------------------------------------------------------------------------- /uploadr/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentdex/flask-multi-upload/HEAD/uploadr/templates/index.html --------------------------------------------------------------------------------