├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── remotezip.py ├── setup.py ├── test_data └── zip64.zip └── test_remotezip.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/README.md -------------------------------------------------------------------------------- /remotezip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/remotezip.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/setup.py -------------------------------------------------------------------------------- /test_data/zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/test_data/zip64.zip -------------------------------------------------------------------------------- /test_remotezip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gtsystem/python-remotezip/HEAD/test_remotezip.py --------------------------------------------------------------------------------