cloud-files 5.0.1__tar.gz → 5.0.2__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.1 → cloud_files-5.0.2}/ChangeLog +7 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/PKG-INFO +1 -1
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/PKG-INFO +1 -1
- cloud_files-5.0.2/cloud_files.egg-info/pbr.json +1 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles_cli/cloudfiles_cli.py +8 -2
- cloud_files-5.0.1/cloud_files.egg-info/pbr.json +0 -1
- {cloud_files-5.0.1 → cloud_files-5.0.2}/.github/workflows/test-suite.yml +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/AUTHORS +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/LICENSE +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/MANIFEST.in +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/README.md +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/automated_test.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/SOURCES.txt +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/dependency_links.txt +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/entry_points.txt +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/not-zip-safe +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/requires.txt +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloud_files.egg-info/top_level.txt +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/__init__.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/cloudfiles.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/compression.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/connectionpools.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/exceptions.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/gcs.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/interfaces.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/lib.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/paths.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/resumable_tools.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/scheduler.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/secrets.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/threaded_queue.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles/typing.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles_cli/LICENSE +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/cloudfiles_cli/__init__.py +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/requirements.txt +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/setup.cfg +0 -0
- {cloud_files-5.0.1 → cloud_files-5.0.2}/setup.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"git_version": "b480c53", "is_release": true}
|
|
@@ -255,7 +255,10 @@ def _cp_single(
|
|
|
255
255
|
xferpaths = [ x.replace("\n", "") for x in xferpaths ]
|
|
256
256
|
prefix = os.path.commonprefix(xferpaths)
|
|
257
257
|
xferpaths = [ x.replace(prefix, "") for x in xferpaths ]
|
|
258
|
-
srcpath =
|
|
258
|
+
srcpath = prefix
|
|
259
|
+
if srcpath == "":
|
|
260
|
+
print(f"cloudfiles: No common prefix found. Currently only one bucket at a time is supported for STDIN.")
|
|
261
|
+
return
|
|
259
262
|
elif many:
|
|
260
263
|
xferpaths = CloudFiles(
|
|
261
264
|
srcpath, no_sign_request=no_sign_request
|
|
@@ -432,7 +435,10 @@ def _mv_single(
|
|
|
432
435
|
xferpaths = [ x.replace("\n", "") for x in xferpaths ]
|
|
433
436
|
prefix = os.path.commonprefix(xferpaths)
|
|
434
437
|
xferpaths = [ x.replace(prefix, "") for x in xferpaths ]
|
|
435
|
-
srcpath =
|
|
438
|
+
srcpath = prefix
|
|
439
|
+
if srcpath == "":
|
|
440
|
+
print(f"cloudfiles: No common prefix found. Currently only one bucket at a time is supported for STDIN.")
|
|
441
|
+
return
|
|
436
442
|
elif many:
|
|
437
443
|
xferpaths = CloudFiles(
|
|
438
444
|
srcpath, no_sign_request=no_sign_request
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"git_version": "4c96852", "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
|