rclone-api 1.0.84__py2.py3-none-any.whl → 1.0.86__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/rclone.py +11 -0
- {rclone_api-1.0.84.dist-info → rclone_api-1.0.86.dist-info}/METADATA +1 -1
- {rclone_api-1.0.84.dist-info → rclone_api-1.0.86.dist-info}/RECORD +7 -7
- {rclone_api-1.0.84.dist-info → rclone_api-1.0.86.dist-info}/LICENSE +0 -0
- {rclone_api-1.0.84.dist-info → rclone_api-1.0.86.dist-info}/WHEEL +0 -0
- {rclone_api-1.0.84.dist-info → rclone_api-1.0.86.dist-info}/entry_points.txt +0 -0
- {rclone_api-1.0.84.dist-info → rclone_api-1.0.86.dist-info}/top_level.txt +0 -0
rclone_api/rclone.py
CHANGED
|
@@ -394,6 +394,12 @@ class Rclone:
|
|
|
394
394
|
f"Invalid file path, contains a remote, which is not allowed for copy_files: {p}"
|
|
395
395
|
)
|
|
396
396
|
|
|
397
|
+
using_fast_list = "--fast-list" in other_args
|
|
398
|
+
if using_fast_list:
|
|
399
|
+
warnings.warn(
|
|
400
|
+
"It's not recommended to use --fast-list with copy_files as the entire repository has to be listed"
|
|
401
|
+
)
|
|
402
|
+
|
|
397
403
|
if max_partition_workers > 1:
|
|
398
404
|
datalists: dict[str, list[str]] = group_files(
|
|
399
405
|
payload, fully_qualified=False
|
|
@@ -503,6 +509,8 @@ class Rclone:
|
|
|
503
509
|
transfers: int | None = None,
|
|
504
510
|
checkers: int | None = None,
|
|
505
511
|
multi_thread_streams: int | None = None,
|
|
512
|
+
low_level_retries: int | None = None,
|
|
513
|
+
retries: int | None = None,
|
|
506
514
|
other_args: list[str] | None = None,
|
|
507
515
|
) -> CompletedProcess:
|
|
508
516
|
"""Copy files from source to destination.
|
|
@@ -518,9 +526,12 @@ class Rclone:
|
|
|
518
526
|
check = get_check(check)
|
|
519
527
|
checkers = checkers or 1000
|
|
520
528
|
transfers = transfers or 32
|
|
529
|
+
low_level_retries = low_level_retries or 10
|
|
530
|
+
retries = retries or 3
|
|
521
531
|
cmd_list: list[str] = ["copy", src_dir, dst_dir]
|
|
522
532
|
cmd_list += ["--checkers", str(checkers)]
|
|
523
533
|
cmd_list += ["--transfers", str(transfers)]
|
|
534
|
+
cmd_list += ["--low-level-retries", str(low_level_retries)]
|
|
524
535
|
if multi_thread_streams is not None:
|
|
525
536
|
cmd_list += ["--multi-thread-streams", str(multi_thread_streams)]
|
|
526
537
|
if other_args:
|
|
@@ -12,7 +12,7 @@ rclone_api/file.py,sha256=EP5yT2dZ0H2p7CY5n0y5k5pHhIliV25pm8KOwBklUTk,1863
|
|
|
12
12
|
rclone_api/filelist.py,sha256=xbiusvNgaB_b_kQOZoHMJJxn6TWGtPrWd2J042BI28o,767
|
|
13
13
|
rclone_api/group_files.py,sha256=O8Awod4_ILGB4RfatBmiG4vXy9eO0rBhbEaZPr6X_sY,7969
|
|
14
14
|
rclone_api/process.py,sha256=RrMfTe0bndmJ6gBK67ioqNvCstJ8aTC8RlGX1XBLlcw,4191
|
|
15
|
-
rclone_api/rclone.py,sha256=
|
|
15
|
+
rclone_api/rclone.py,sha256=IvqnHiSW7PMpoNp61vhsnl4oFyrWDFwIpb0bgt6WGa0,33723
|
|
16
16
|
rclone_api/remote.py,sha256=O9WDUFQy9f6oT1HdUbTixK2eg0xtBBm8k4Xl6aa6K00,431
|
|
17
17
|
rclone_api/rpath.py,sha256=8ZA_1wxWtskwcy0I8V2VbjKDmzPkiWd8Q2JQSvh-sYE,2586
|
|
18
18
|
rclone_api/scan_missing_folders.py,sha256=Kulca2Q6WZodt00ATFHkmqqInuoPvBkhTcS9703y6po,4740
|
|
@@ -21,9 +21,9 @@ rclone_api/util.py,sha256=XMrA2m_di4h8JTM-qyx2iyrFZn-l-or_SJOa5tEsDsI,4200
|
|
|
21
21
|
rclone_api/walk.py,sha256=-54NVE8EJcCstwDoaC_UtHm73R2HrZwVwQmsnv55xNU,3369
|
|
22
22
|
rclone_api/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
|
23
23
|
rclone_api/cmd/list_files.py,sha256=x8FHODEilwKqwdiU1jdkeJbLwOqUkUQuDWPo2u_zpf0,741
|
|
24
|
-
rclone_api-1.0.
|
|
25
|
-
rclone_api-1.0.
|
|
26
|
-
rclone_api-1.0.
|
|
27
|
-
rclone_api-1.0.
|
|
28
|
-
rclone_api-1.0.
|
|
29
|
-
rclone_api-1.0.
|
|
24
|
+
rclone_api-1.0.86.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
|
25
|
+
rclone_api-1.0.86.dist-info/METADATA,sha256=X1CVv4bwOcMPlSv9DuGUbY9Xajm_EpTzDaMGKSsqikw,4489
|
|
26
|
+
rclone_api-1.0.86.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
|
|
27
|
+
rclone_api-1.0.86.dist-info/entry_points.txt,sha256=XUoTX3m7CWxdj2VAKhEuO0NMOfX2qf-OcEDFwdyk9ZE,72
|
|
28
|
+
rclone_api-1.0.86.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
|
|
29
|
+
rclone_api-1.0.86.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|