rclone-api 1.2.4__py2.py3-none-any.whl → 1.2.6__py2.py3-none-any.whl

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.
@@ -105,15 +105,11 @@ def file_chunker(
105
105
  )
106
106
  return
107
107
 
108
- if isinstance(data, Exception):
109
- err: Exception = data
110
- warnings.warn(
111
- f"Error reading file: {err}, skipping part {part_number}"
112
- )
113
- return
114
-
115
- if not data:
108
+ if not data or len(data) == 0:
116
109
  warnings.warn(f"Empty data for part {part_number} of {file_path}")
110
+ raise ValueError(
111
+ f"Empty data for part {part_number} of {file_path}"
112
+ )
117
113
 
118
114
  file_chunk = FileChunk(
119
115
  src,
@@ -56,6 +56,7 @@ def handle_upload(
56
56
  ) -> FinishedPiece | Exception | None:
57
57
  if file_chunk is None:
58
58
  return None
59
+ print(f"Handling upload for {file_chunk.part_number}, size {len(file_chunk.data)}")
59
60
  chunk, part_number = file_chunk.data, file_chunk.part_number
60
61
  try:
61
62
  part: FinishedPiece = upload_task(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: rclone_api
3
- Version: 1.2.4
3
+ Version: 1.2.6
4
4
  Summary: rclone api in python
5
5
  Home-page: https://github.com/zackees/rclone-api
6
6
  License: BSD 3-Clause License
@@ -28,14 +28,14 @@ rclone_api/experimental/flags_base.py,sha256=ajU_czkTcAxXYU-SlmiCfHY7aCQGHvpCLqJ
28
28
  rclone_api/profile/mount_copy_bytes.py,sha256=_bd9oergTuCdj1P6AVh_pC6GmtCpLFQYwiTdhwXeYZE,8404
29
29
  rclone_api/s3/api.py,sha256=PafsIEyWDpLWAXsZAjFm9CY14vJpsDr9lOsn0kGRLZ0,4009
30
30
  rclone_api/s3/basic_ops.py,sha256=hK3366xhVEzEcjz9Gk_8lFx6MRceAk72cax6mUrr6ko,2104
31
- rclone_api/s3/chunk_file.py,sha256=dCF5PcI3ygw4PXuaLluBU6euW4QYYpHjsLR_jjhZxQc,4505
31
+ rclone_api/s3/chunk_file.py,sha256=2YLWPzQnVVtdBUOlZkLATcRcQGE18cI2TJZzfj4LAoc,4402
32
32
  rclone_api/s3/chunk_types.py,sha256=2n9U1BZ_5mcpoLLbSqkhvzgKj814jtSMnih9CWKcChU,10592
33
33
  rclone_api/s3/create.py,sha256=wgfkapv_j904CfKuWyiBIWJVxfAx_ftemFSUV14aT68,3149
34
34
  rclone_api/s3/types.py,sha256=ZUw9s164wljCEMTS4CoHXNzFIhYJEgKD6NDAu-RXyr8,1551
35
- rclone_api/s3/upload_file_multipart.py,sha256=CasDh_8_mYmZ8RvkcdyYeZ6OCa4DwDsByPYQg9WZR90,10818
36
- rclone_api-1.2.4.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
37
- rclone_api-1.2.4.dist-info/METADATA,sha256=B8BpHi7UtJrfT2DVV98M7RRuJTUnrmIXf2fxcZVq5ZU,4536
38
- rclone_api-1.2.4.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
39
- rclone_api-1.2.4.dist-info/entry_points.txt,sha256=TV8kwP3FRzYwUEr0RLC7aJh0W03SAefIJNXTJ-FdMIQ,200
40
- rclone_api-1.2.4.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
41
- rclone_api-1.2.4.dist-info/RECORD,,
35
+ rclone_api/s3/upload_file_multipart.py,sha256=aDaLF2FWSvU_jurxiFphGZBncvkPqWN47VFNzYSSTWM,10906
36
+ rclone_api-1.2.6.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
37
+ rclone_api-1.2.6.dist-info/METADATA,sha256=zYEyLONtUobgqIBRwPN_iQ1y0rmKFzfT-JKbtt2wXLg,4536
38
+ rclone_api-1.2.6.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
39
+ rclone_api-1.2.6.dist-info/entry_points.txt,sha256=TV8kwP3FRzYwUEr0RLC7aJh0W03SAefIJNXTJ-FdMIQ,200
40
+ rclone_api-1.2.6.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
41
+ rclone_api-1.2.6.dist-info/RECORD,,