rclone-api 1.0.61__py2.py3-none-any.whl → 1.0.63__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rclone-api might be problematic. Click here for more details.
- rclone_api/__init__.py +2 -1
- rclone_api/rclone.py +17 -1
- {rclone_api-1.0.61.dist-info → rclone_api-1.0.63.dist-info}/METADATA +1 -1
- {rclone_api-1.0.61.dist-info → rclone_api-1.0.63.dist-info}/RECORD +8 -8
- {rclone_api-1.0.61.dist-info → rclone_api-1.0.63.dist-info}/LICENSE +0 -0
- {rclone_api-1.0.61.dist-info → rclone_api-1.0.63.dist-info}/WHEEL +0 -0
- {rclone_api-1.0.61.dist-info → rclone_api-1.0.63.dist-info}/entry_points.txt +0 -0
- {rclone_api-1.0.61.dist-info → rclone_api-1.0.63.dist-info}/top_level.txt +0 -0
rclone_api/__init__.py
CHANGED
@@ -6,7 +6,7 @@ from .dir_listing import DirListing
|
|
6
6
|
from .file import File
|
7
7
|
from .filelist import FileList
|
8
8
|
from .process import Process
|
9
|
-
from .rclone import Rclone, rclone_verbose
|
9
|
+
from .rclone import DiffOption, Rclone, rclone_verbose
|
10
10
|
from .remote import Remote
|
11
11
|
from .rpath import RPath
|
12
12
|
|
@@ -24,4 +24,5 @@ __all__ = [
|
|
24
24
|
"DiffType",
|
25
25
|
"rclone_verbose",
|
26
26
|
"CompletedProcess",
|
27
|
+
"DiffOption",
|
27
28
|
]
|
rclone_api/rclone.py
CHANGED
@@ -47,6 +47,15 @@ class ModTimeStrategy(Enum):
|
|
47
47
|
NO_MODTIME = "no-modtime"
|
48
48
|
|
49
49
|
|
50
|
+
class DiffOption(Enum):
|
51
|
+
COMBINED = "combined"
|
52
|
+
MISSING_ON_SRC = "missing-on-src"
|
53
|
+
MISSING_ON_DST = "missing-on-dst"
|
54
|
+
DIFFER = "differ"
|
55
|
+
MATCH = "match"
|
56
|
+
ERROR = "error"
|
57
|
+
|
58
|
+
|
50
59
|
class Rclone:
|
51
60
|
def __init__(
|
52
61
|
self, rclone_conf: Path | Config, rclone_exe: Path | None = None
|
@@ -190,6 +199,9 @@ class Rclone:
|
|
190
199
|
max_size: (
|
191
200
|
str | None
|
192
201
|
) = None, # e. g. "1GB" - see rclone documentation: https://rclone.org/commands/rclone_check/
|
202
|
+
diff_option: DiffOption = DiffOption.COMBINED,
|
203
|
+
fast_list: bool = True,
|
204
|
+
size_only: bool = False,
|
193
205
|
other_args: list[str] | None = None,
|
194
206
|
) -> Generator[DiffItem, None, None]:
|
195
207
|
"""Be extra careful with the src and dst values. If you are off by one
|
@@ -203,9 +215,13 @@ class Rclone:
|
|
203
215
|
"1000",
|
204
216
|
"--log-level",
|
205
217
|
"INFO",
|
206
|
-
"--
|
218
|
+
f"--{diff_option.value}",
|
207
219
|
"-",
|
208
220
|
]
|
221
|
+
if size_only:
|
222
|
+
cmd += ["--size-only"]
|
223
|
+
if fast_list:
|
224
|
+
cmd += ["--fast-list"]
|
209
225
|
if min_size:
|
210
226
|
cmd += ["--min-size", min_size]
|
211
227
|
if max_size:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
rclone_api/__init__.py,sha256=
|
1
|
+
rclone_api/__init__.py,sha256=M9JDm9dhkEUUxnTdfLVzMUJUZdIDWuvTbEoCN_HU_iE,597
|
2
2
|
rclone_api/cli.py,sha256=dibfAZIh0kXWsBbfp3onKLjyZXo54mTzDjUdzJlDlWo,231
|
3
3
|
rclone_api/completed_process.py,sha256=Pp-hXnLgej0IGO5ee9Fmx64dGzIofbQFEUyXdFCvO54,1371
|
4
4
|
rclone_api/config.py,sha256=tP6cU9DnCCEIRc_KP9HPur1jFLLg2QGFSxNwFm6_MVw,118
|
@@ -12,16 +12,16 @@ rclone_api/file.py,sha256=YtR5Y6c0YfXTS-sReOy2UgiSnafcAeO6b2hnbojBQD4,1423
|
|
12
12
|
rclone_api/filelist.py,sha256=xbiusvNgaB_b_kQOZoHMJJxn6TWGtPrWd2J042BI28o,767
|
13
13
|
rclone_api/group_files.py,sha256=kOHh6ysFDkxjldSwvW6KqmiADUC1yFCdrZRY57TvbGY,5328
|
14
14
|
rclone_api/process.py,sha256=RrMfTe0bndmJ6gBK67ioqNvCstJ8aTC8RlGX1XBLlcw,4191
|
15
|
-
rclone_api/rclone.py,sha256=
|
15
|
+
rclone_api/rclone.py,sha256=XHlsmFRBFPNa9KzUPMQQgEJ9iT7FEByzdFX_x-YHK3E,27660
|
16
16
|
rclone_api/remote.py,sha256=c9hlRKBCg1BFB9MCINaQIoCg10qyAkeqiS4brl8ce-8,343
|
17
17
|
rclone_api/rpath.py,sha256=8ZA_1wxWtskwcy0I8V2VbjKDmzPkiWd8Q2JQSvh-sYE,2586
|
18
18
|
rclone_api/util.py,sha256=_cvmHcJPRl2yXw4zgZiop3z-riA_8Ek6S5NDPw8cqSY,4198
|
19
19
|
rclone_api/walk.py,sha256=UaNOE3ICd8k5ouSFZvkVEH4r2GnnrD9TxfwkFcQnayo,3170
|
20
20
|
rclone_api/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
21
21
|
rclone_api/cmd/list_files.py,sha256=x8FHODEilwKqwdiU1jdkeJbLwOqUkUQuDWPo2u_zpf0,741
|
22
|
-
rclone_api-1.0.
|
23
|
-
rclone_api-1.0.
|
24
|
-
rclone_api-1.0.
|
25
|
-
rclone_api-1.0.
|
26
|
-
rclone_api-1.0.
|
27
|
-
rclone_api-1.0.
|
22
|
+
rclone_api-1.0.63.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
23
|
+
rclone_api-1.0.63.dist-info/METADATA,sha256=ANXO37GSNloEFw3pzFgME1GwL1F-EiKdNNVqZ1ElV3U,4489
|
24
|
+
rclone_api-1.0.63.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
|
25
|
+
rclone_api-1.0.63.dist-info/entry_points.txt,sha256=XUoTX3m7CWxdj2VAKhEuO0NMOfX2qf-OcEDFwdyk9ZE,72
|
26
|
+
rclone_api-1.0.63.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
|
27
|
+
rclone_api-1.0.63.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|