rclone-api 1.1.81__py2.py3-none-any.whl → 1.1.83__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.
- rclone_api/profile/mount_copy_bytes.py +5 -2
- rclone_api/types.py +37 -0
- {rclone_api-1.1.81.dist-info → rclone_api-1.1.83.dist-info}/METADATA +1 -1
- {rclone_api-1.1.81.dist-info → rclone_api-1.1.83.dist-info}/RECORD +8 -8
- {rclone_api-1.1.81.dist-info → rclone_api-1.1.83.dist-info}/LICENSE +0 -0
- {rclone_api-1.1.81.dist-info → rclone_api-1.1.83.dist-info}/WHEEL +0 -0
- {rclone_api-1.1.81.dist-info → rclone_api-1.1.83.dist-info}/entry_points.txt +0 -0
- {rclone_api-1.1.81.dist-info → rclone_api-1.1.83.dist-info}/top_level.txt +0 -0
|
@@ -118,7 +118,6 @@ def _run_profile(
|
|
|
118
118
|
print(f"# Started test download of {SizeSuffix(size)} with {transfers} transfers")
|
|
119
119
|
print("#" * 80)
|
|
120
120
|
net_io_start = psutil.net_io_counters()
|
|
121
|
-
start = time.time()
|
|
122
121
|
chunk_size = size // transfers
|
|
123
122
|
|
|
124
123
|
filechunker: MultiMountFileChunker = rclone.get_multi_mount_file_chunker(
|
|
@@ -129,6 +128,10 @@ def _run_profile(
|
|
|
129
128
|
mount_log=mount_log,
|
|
130
129
|
)
|
|
131
130
|
|
|
131
|
+
bytes_or_err = filechunker.fetch(offset.as_int(), size.as_int())
|
|
132
|
+
|
|
133
|
+
start = time.time()
|
|
134
|
+
|
|
132
135
|
# bytes_or_err: bytes | Exception = rclone.copy_bytes(
|
|
133
136
|
# src=src_file,
|
|
134
137
|
# offset=offset.as_int(),
|
|
@@ -139,7 +142,7 @@ def _run_profile(
|
|
|
139
142
|
# mount_log=mount_log,
|
|
140
143
|
# )
|
|
141
144
|
|
|
142
|
-
bytes_or_err = filechunker.fetch(offset.as_int(), size.as_int())
|
|
145
|
+
bytes_or_err = filechunker.fetch((offset + SizeSuffix("1G")).as_int(), size.as_int())
|
|
143
146
|
|
|
144
147
|
diff = time.time() - start
|
|
145
148
|
net_io_end = psutil.net_io_counters()
|
rclone_api/types.py
CHANGED
|
@@ -178,3 +178,40 @@ class SizeSuffix:
|
|
|
178
178
|
raise ZeroDivisionError("Division by zero is undefined")
|
|
179
179
|
# Use floor division to maintain integer arithmetic.
|
|
180
180
|
return SizeSuffix(self._size // other_int._size)
|
|
181
|
+
|
|
182
|
+
def __eq__(self, other: object) -> bool:
|
|
183
|
+
if not isinstance(other, SizeSuffix):
|
|
184
|
+
return False
|
|
185
|
+
return self._size == other._size
|
|
186
|
+
|
|
187
|
+
def __ne__(self, other: object) -> bool:
|
|
188
|
+
if not isinstance(other, SizeSuffix):
|
|
189
|
+
return True
|
|
190
|
+
return self._size != other._size
|
|
191
|
+
|
|
192
|
+
def __lt__(self, other: object) -> bool:
|
|
193
|
+
if not isinstance(other, SizeSuffix):
|
|
194
|
+
return False
|
|
195
|
+
return self._size < other._size
|
|
196
|
+
|
|
197
|
+
def __le__(self, other: object) -> bool:
|
|
198
|
+
if not isinstance(other, SizeSuffix):
|
|
199
|
+
return False
|
|
200
|
+
return self._size <= other._size
|
|
201
|
+
|
|
202
|
+
def __gt__(self, other: object) -> bool:
|
|
203
|
+
if not isinstance(other, SizeSuffix):
|
|
204
|
+
return False
|
|
205
|
+
return self._size > other._size
|
|
206
|
+
|
|
207
|
+
def __ge__(self, other: object) -> bool:
|
|
208
|
+
if not isinstance(other, SizeSuffix):
|
|
209
|
+
return False
|
|
210
|
+
return self._size >= other._size
|
|
211
|
+
|
|
212
|
+
def __hash__(self) -> int:
|
|
213
|
+
return hash(self._size)
|
|
214
|
+
|
|
215
|
+
def __int__(self) -> int:
|
|
216
|
+
return self._size
|
|
217
|
+
|
|
@@ -17,7 +17,7 @@ rclone_api/rclone.py,sha256=wv_3ztJ0vrTrWRW5ZCnsF8Gjo9nYehCp_KAjMBDtqaE,48797
|
|
|
17
17
|
rclone_api/remote.py,sha256=O9WDUFQy9f6oT1HdUbTixK2eg0xtBBm8k4Xl6aa6K00,431
|
|
18
18
|
rclone_api/rpath.py,sha256=8ZA_1wxWtskwcy0I8V2VbjKDmzPkiWd8Q2JQSvh-sYE,2586
|
|
19
19
|
rclone_api/scan_missing_folders.py,sha256=Kulca2Q6WZodt00ATFHkmqqInuoPvBkhTcS9703y6po,4740
|
|
20
|
-
rclone_api/types.py,sha256=
|
|
20
|
+
rclone_api/types.py,sha256=j1255f2WaNI-mgzTbJ9NK1DPsqdTPm08T43NF8CKfuI,6187
|
|
21
21
|
rclone_api/util.py,sha256=_Z-GUMVXnHYOGdo2dy2ie2P5fGgyg8KdGjHKicx68Ko,4573
|
|
22
22
|
rclone_api/walk.py,sha256=-54NVE8EJcCstwDoaC_UtHm73R2HrZwVwQmsnv55xNU,3369
|
|
23
23
|
rclone_api/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
|
@@ -25,7 +25,7 @@ rclone_api/cmd/copy_large_s3.py,sha256=-rfedi-ZzPUdCSP8ai9LRL0y1xVkvN-viQQlk8HVU
|
|
|
25
25
|
rclone_api/cmd/list_files.py,sha256=x8FHODEilwKqwdiU1jdkeJbLwOqUkUQuDWPo2u_zpf0,741
|
|
26
26
|
rclone_api/experimental/flags.py,sha256=qCVD--fSTmzlk9hloRLr0q9elzAOFzPsvVpKM3aB1Mk,2739
|
|
27
27
|
rclone_api/experimental/flags_base.py,sha256=ajU_czkTcAxXYU-SlmiCfHY7aCQGHvpCLqJ-Z8uZLk0,2102
|
|
28
|
-
rclone_api/profile/mount_copy_bytes.py,sha256=
|
|
28
|
+
rclone_api/profile/mount_copy_bytes.py,sha256=q5bzYdRgitwISwu5NNrZmcTkfT4fO6kKJSHnK3D9nCw,8253
|
|
29
29
|
rclone_api/s3/api.py,sha256=qxtRDUpHYqJ7StJRtP8U_PbF_BvYRg705568SyvF-R0,3770
|
|
30
30
|
rclone_api/s3/basic_ops.py,sha256=hK3366xhVEzEcjz9Gk_8lFx6MRceAk72cax6mUrr6ko,2104
|
|
31
31
|
rclone_api/s3/chunk_file.py,sha256=D6wM9Nuu73LNGC8JCCfevqjF3qdZ21mQxYQClFLZLMU,3726
|
|
@@ -33,9 +33,9 @@ rclone_api/s3/chunk_types.py,sha256=LbXayXY1KgVU1LkdbASD_BQ7TpVpwVnzMjtz--8LBaE,
|
|
|
33
33
|
rclone_api/s3/create.py,sha256=wgfkapv_j904CfKuWyiBIWJVxfAx_ftemFSUV14aT68,3149
|
|
34
34
|
rclone_api/s3/types.py,sha256=yBnJ38Tjk6RlydJ-sqZ7DSfyFloy8KDYJ0mv3vlOzLE,1388
|
|
35
35
|
rclone_api/s3/upload_file_multipart.py,sha256=y9azNAU8QH5Ovwz33V2HZwNmJdlFjJg-jrXLZ1gtMds,10364
|
|
36
|
-
rclone_api-1.1.
|
|
37
|
-
rclone_api-1.1.
|
|
38
|
-
rclone_api-1.1.
|
|
39
|
-
rclone_api-1.1.
|
|
40
|
-
rclone_api-1.1.
|
|
41
|
-
rclone_api-1.1.
|
|
36
|
+
rclone_api-1.1.83.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
|
37
|
+
rclone_api-1.1.83.dist-info/METADATA,sha256=B_J5u325kcMZLsv4N8PvbPjyPbjJdnS8HcWwX4palFM,4537
|
|
38
|
+
rclone_api-1.1.83.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
|
|
39
|
+
rclone_api-1.1.83.dist-info/entry_points.txt,sha256=TV8kwP3FRzYwUEr0RLC7aJh0W03SAefIJNXTJ-FdMIQ,200
|
|
40
|
+
rclone_api-1.1.83.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
|
|
41
|
+
rclone_api-1.1.83.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|