gitextract_j1w6eiqo/ ├── .github/ │ └── workflows/ │ ├── deploying.yml │ └── testing.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── README.rst ├── docs/ │ ├── advance.rst │ ├── comparison.rst │ └── interface.rst ├── s3path/ │ ├── __init__.py │ ├── accessor.py │ ├── current_version.py │ ├── old_versions.py │ └── py.typed ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── test_not_supported.py ├── test_path_operations.py ├── test_pure_path_operations.py └── test_s3path_configuration.py