├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── README.rst ├── docs ├── Makefile ├── conf.py └── index.rst ├── fs_s3fs ├── __init__.py ├── _s3fs.py ├── _version.py ├── opener.py └── tests │ └── test_s3fs.py ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/docs/index.rst -------------------------------------------------------------------------------- /fs_s3fs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/fs_s3fs/__init__.py -------------------------------------------------------------------------------- /fs_s3fs/_s3fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/fs_s3fs/_s3fs.py -------------------------------------------------------------------------------- /fs_s3fs/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.1" 2 | -------------------------------------------------------------------------------- /fs_s3fs/opener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/fs_s3fs/opener.py -------------------------------------------------------------------------------- /fs_s3fs/tests/test_s3fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/fs_s3fs/tests/test_s3fs.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [coverage:run] 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyFilesystem/s3fs/HEAD/tox.ini --------------------------------------------------------------------------------