cloud-files 5.0.2__tar.gz → 5.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cloud_files-5.0.2 → cloud_files-5.0.3}/ChangeLog +6 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/PKG-INFO +1 -1
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/PKG-INFO +1 -1
- cloud_files-5.0.3/cloud_files.egg-info/pbr.json +1 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/interfaces.py +12 -6
- cloud_files-5.0.2/cloud_files.egg-info/pbr.json +0 -1
- {cloud_files-5.0.2 → cloud_files-5.0.3}/.github/workflows/test-suite.yml +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/AUTHORS +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/LICENSE +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/MANIFEST.in +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/README.md +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/automated_test.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/SOURCES.txt +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/dependency_links.txt +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/entry_points.txt +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/not-zip-safe +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/requires.txt +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloud_files.egg-info/top_level.txt +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/__init__.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/cloudfiles.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/compression.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/connectionpools.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/exceptions.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/gcs.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/lib.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/paths.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/resumable_tools.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/scheduler.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/secrets.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/threaded_queue.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles/typing.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles_cli/LICENSE +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles_cli/__init__.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/cloudfiles_cli/cloudfiles_cli.py +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/requirements.txt +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/setup.cfg +0 -0
- {cloud_files-5.0.2 → cloud_files-5.0.3}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "589559d", "is_release": true}
|
|
@@ -808,18 +808,24 @@ class GoogleCloudStorageInterface(StorageInterface):
|
|
|
808
808
|
path = posixpath.join(layer_path, prefix)
|
|
809
809
|
|
|
810
810
|
delimiter = '/' if flat else None
|
|
811
|
+
|
|
811
812
|
blobs = self._bucket.list_blobs(
|
|
812
813
|
prefix=path,
|
|
813
814
|
delimiter=delimiter,
|
|
814
815
|
)
|
|
815
816
|
|
|
816
|
-
|
|
817
|
-
yield from (
|
|
818
|
-
item.removeprefix(path)
|
|
819
|
-
for item in blobs.prefixes
|
|
820
|
-
)
|
|
821
|
-
|
|
817
|
+
first = True
|
|
822
818
|
for blob in blobs:
|
|
819
|
+
# This awkward construction is necessary
|
|
820
|
+
# because the request that populates prefixes
|
|
821
|
+
# isn't made until the iterator is activated.
|
|
822
|
+
if first and blobs.prefixes:
|
|
823
|
+
yield from (
|
|
824
|
+
item.removeprefix(path)
|
|
825
|
+
for item in blobs.prefixes
|
|
826
|
+
)
|
|
827
|
+
first = False
|
|
828
|
+
|
|
823
829
|
filename = blob.name.removeprefix(layer_path)
|
|
824
830
|
if not filename:
|
|
825
831
|
continue
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"git_version": "b480c53", "is_release": true}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|