├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── example ├── __init__.py ├── app.py ├── data │ └── hello.txt └── templates │ ├── index.html │ └── view.html ├── flask_cloudy.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── config.py ├── data │ ├── hello.js │ └── hello.txt └── test_cloudy.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/README.md -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/example/app.py -------------------------------------------------------------------------------- /example/data/hello.txt: -------------------------------------------------------------------------------- 1 | Hello World! 2 | 3 | from flask_cloud import Storage -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/example/templates/view.html -------------------------------------------------------------------------------- /flask_cloudy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/flask_cloudy.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pytest -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/data/hello.js: -------------------------------------------------------------------------------- 1 | // This is the javascript file 2 | -------------------------------------------------------------------------------- /tests/data/hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cloudy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/tests/test_cloudy.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mardix/flask-cloudy/HEAD/tox.ini --------------------------------------------------------------------------------