├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin ├── travis-build.bash └── travis-run.sh ├── ckanext ├── __init__.py └── s3filestore │ ├── __init__.py │ ├── commands.py │ ├── controller.py │ ├── fanstatic │ └── .gitignore │ ├── plugin.py │ ├── public │ └── .gitignore │ ├── templates │ └── .gitignore │ ├── tests │ ├── __init__.py │ ├── data.csv │ ├── test_controller.py │ └── test_uploader.py │ └── uploader.py ├── dev-requirements.txt ├── requirements.txt ├── scripts └── local_filestore_to_s3.py ├── setup.py └── test.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/README.rst -------------------------------------------------------------------------------- /bin/travis-build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/bin/travis-build.bash -------------------------------------------------------------------------------- /bin/travis-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/bin/travis-run.sh -------------------------------------------------------------------------------- /ckanext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/__init__.py -------------------------------------------------------------------------------- /ckanext/s3filestore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/s3filestore/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/s3filestore/commands.py -------------------------------------------------------------------------------- /ckanext/s3filestore/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/s3filestore/controller.py -------------------------------------------------------------------------------- /ckanext/s3filestore/fanstatic/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/s3filestore/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/s3filestore/plugin.py -------------------------------------------------------------------------------- /ckanext/s3filestore/public/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/s3filestore/templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/s3filestore/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/s3filestore/tests/data.csv: -------------------------------------------------------------------------------- 1 | date,price 2 | 1950-01-01,34.730 3 | -------------------------------------------------------------------------------- /ckanext/s3filestore/tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/s3filestore/tests/test_controller.py -------------------------------------------------------------------------------- /ckanext/s3filestore/tests/test_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/s3filestore/tests/test_uploader.py -------------------------------------------------------------------------------- /ckanext/s3filestore/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/ckanext/s3filestore/uploader.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.4.4 2 | ckantoolkit 3 | -------------------------------------------------------------------------------- /scripts/local_filestore_to_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/scripts/local_filestore_to_s3.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/setup.py -------------------------------------------------------------------------------- /test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/ckanext-s3filestore/HEAD/test.ini --------------------------------------------------------------------------------