rucio-clients 37.5.0__py3-none-any.whl → 37.7.0__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.
Potentially problematic release.
This version of rucio-clients might be problematic. Click here for more details.
- rucio/cli/bin_legacy/rucio.py +41 -22
- rucio/cli/bin_legacy/rucio_admin.py +1 -1
- rucio/cli/did.py +2 -2
- rucio/cli/rse.py +2 -3
- rucio/cli/rule.py +9 -5
- rucio/cli/subscription.py +1 -1
- rucio/client/baseclient.py +9 -4
- rucio/client/didclient.py +16 -16
- rucio/client/downloadclient.py +16 -15
- rucio/client/exportclient.py +45 -4
- rucio/client/lockclient.py +3 -3
- rucio/client/pingclient.py +35 -4
- rucio/client/replicaclient.py +2 -2
- rucio/client/touchclient.py +3 -2
- rucio/client/uploadclient.py +728 -183
- rucio/common/cache.py +1 -2
- rucio/common/client.py +4 -30
- rucio/common/config.py +27 -3
- rucio/common/constants.py +5 -1
- rucio/common/didtype.py +2 -2
- rucio/common/pcache.py +20 -25
- rucio/common/plugins.py +12 -19
- rucio/common/policy.py +3 -2
- rucio/common/schema/__init__.py +11 -8
- rucio/common/types.py +7 -5
- rucio/common/utils.py +1 -1
- rucio/rse/__init__.py +7 -6
- rucio/rse/protocols/ngarc.py +2 -2
- rucio/rse/protocols/srm.py +1 -1
- rucio/rse/protocols/webdav.py +8 -1
- rucio/rse/rsemanager.py +5 -4
- rucio/rse/translation.py +2 -2
- rucio/vcsversion.py +3 -3
- {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/METADATA +1 -1
- {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/RECORD +46 -46
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rse-accounts.cfg.template +0 -0
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rucio.cfg.atlas.client.template +0 -0
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rucio.cfg.template +0 -0
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/requirements.client.txt +0 -0
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/rucio_client/merge_rucio_configs.py +0 -0
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/scripts/rucio +0 -0
- {rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/scripts/rucio-admin +0 -0
- {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/WHEEL +0 -0
- {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/licenses/AUTHORS.rst +0 -0
- {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/licenses/LICENSE +0 -0
- {rucio_clients-37.5.0.dist-info → rucio_clients-37.7.0.dist-info}/top_level.txt +0 -0
rucio/rse/rsemanager.py
CHANGED
|
@@ -22,6 +22,7 @@ from urllib.parse import urlparse
|
|
|
22
22
|
from rucio.common import constants, exception, types, utils
|
|
23
23
|
from rucio.common.checksum import GLOBALLY_SUPPORTED_CHECKSUMS
|
|
24
24
|
from rucio.common.config import config_get_int
|
|
25
|
+
from rucio.common.constants import DEFAULT_VO
|
|
25
26
|
from rucio.common.constraints import STRING_TYPES
|
|
26
27
|
from rucio.common.logging import formatted_logger
|
|
27
28
|
from rucio.common.utils import get_transfer_schemas, make_valid_did
|
|
@@ -34,7 +35,7 @@ if TYPE_CHECKING:
|
|
|
34
35
|
from rucio.rse.protocols.protocol import RSEProtocol
|
|
35
36
|
|
|
36
37
|
|
|
37
|
-
def get_scope_protocol(vo: str =
|
|
38
|
+
def get_scope_protocol(vo: str = DEFAULT_VO) -> 'Callable':
|
|
38
39
|
"""
|
|
39
40
|
Returns the callable protocol to translate the pfn to a name/scope pair
|
|
40
41
|
|
|
@@ -48,7 +49,7 @@ def get_scope_protocol(vo: str = 'def') -> 'Callable':
|
|
|
48
49
|
|
|
49
50
|
def get_rse_info(
|
|
50
51
|
rse: Optional[str] = None,
|
|
51
|
-
vo: str =
|
|
52
|
+
vo: str = DEFAULT_VO,
|
|
52
53
|
rse_id: Optional[str] = None,
|
|
53
54
|
session: Optional["Session"] = None
|
|
54
55
|
) -> types.RSESettingsDict:
|
|
@@ -306,7 +307,7 @@ def exists(
|
|
|
306
307
|
scheme: Optional[str] = None,
|
|
307
308
|
impl: Optional[str] = None,
|
|
308
309
|
auth_token: Optional[str] = None,
|
|
309
|
-
vo: str =
|
|
310
|
+
vo: str = DEFAULT_VO,
|
|
310
311
|
logger: types.LoggerFunction = logging.log
|
|
311
312
|
) -> Union[bool, list[Union[bool, dict[dict[str, str], bool]]]]:
|
|
312
313
|
"""
|
|
@@ -381,7 +382,7 @@ def upload(
|
|
|
381
382
|
delete_existing: bool = False,
|
|
382
383
|
sign_service: Optional[str] = None,
|
|
383
384
|
auth_token: Optional[str] = None,
|
|
384
|
-
vo: str =
|
|
385
|
+
vo: str = DEFAULT_VO,
|
|
385
386
|
logger: types.LoggerFunction = logging.log,
|
|
386
387
|
impl: Optional[str] = None
|
|
387
388
|
) -> dict[Union[int, str], Union[bool, str, dict[str, Union[Literal[True], Exception]]]]:
|
rucio/rse/translation.py
CHANGED
|
@@ -18,7 +18,7 @@ from configparser import NoOptionError, NoSectionError
|
|
|
18
18
|
from typing import TYPE_CHECKING, Any, Optional
|
|
19
19
|
|
|
20
20
|
from rucio.common import config
|
|
21
|
-
from rucio.common.constants import RseAttr
|
|
21
|
+
from rucio.common.constants import DEFAULT_VO, RseAttr
|
|
22
22
|
from rucio.common.exception import ConfigNotFound
|
|
23
23
|
from rucio.common.plugins import PolicyPackageAlgorithms
|
|
24
24
|
|
|
@@ -35,7 +35,7 @@ class RSEDeterministicScopeTranslation(PolicyPackageAlgorithms):
|
|
|
35
35
|
|
|
36
36
|
_algorithm_type = "pfn2lfn"
|
|
37
37
|
|
|
38
|
-
def __init__(self, vo: str =
|
|
38
|
+
def __init__(self, vo: str = DEFAULT_VO):
|
|
39
39
|
super().__init__()
|
|
40
40
|
|
|
41
41
|
logger = logging.getLogger(__name__)
|
rucio/vcsversion.py
CHANGED
|
@@ -4,8 +4,8 @@ This file is automatically generated; Do not edit it. :)
|
|
|
4
4
|
'''
|
|
5
5
|
VERSION_INFO = {
|
|
6
6
|
'final': True,
|
|
7
|
-
'version': '37.
|
|
7
|
+
'version': '37.7.0',
|
|
8
8
|
'branch_nick': 'release-37',
|
|
9
|
-
'revision_id': '
|
|
10
|
-
'revno':
|
|
9
|
+
'revision_id': '61ed028cbd532ede88189a81bee971db566fcdec',
|
|
10
|
+
'revno': 13826
|
|
11
11
|
}
|
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
|
|
2
2
|
rucio/alembicrevision.py,sha256=lNSQZYA4U_fsMW8l0dHpiV243XZhioqvVo9ihmpuQBo,690
|
|
3
|
-
rucio/vcsversion.py,sha256=
|
|
3
|
+
rucio/vcsversion.py,sha256=biT4gmgYRSQJCOQwPmSjSu0ajed0y5lOfYEcOZSwWXM,244
|
|
4
4
|
rucio/version.py,sha256=IwsNb1QQk0D092QQbR2K9wBPF2Akny1RGs-ZZziUohE,1519
|
|
5
5
|
rucio/cli/__init__.py,sha256=GIkHmxgE3xdvWSf-7ZnvVaJmbs7NokaSjbFzsrXOG9o,662
|
|
6
6
|
rucio/cli/account.py,sha256=7YWLfmiplhCjaaHNSYBzd7d_4yYzxUSRrsT0xGcNr2w,9452
|
|
7
7
|
rucio/cli/command.py,sha256=xU52wQhkyH85htZQyqOCOZOPizoMHY87FG6hNojk59Q,10784
|
|
8
8
|
rucio/cli/config.py,sha256=L7vhzAyUVKZBWKKDvrLl7zCei8O6kDyzX_x_-p-vk9M,2706
|
|
9
|
-
rucio/cli/did.py,sha256=
|
|
9
|
+
rucio/cli/did.py,sha256=BWUFT7lZY3YiAM09HTufPzFi5A-s0SYfTl5wijp3SyM,9158
|
|
10
10
|
rucio/cli/download.py,sha256=nltAf8nm8P6nrfIu0CUveY4YM6oL5nSR3w6yS4qBbw0,6248
|
|
11
11
|
rucio/cli/lifetime_exception.py,sha256=joi9HdaiYP_g3115IR_ImX7oFlEg1xbSaK-IzmoIVcY,1498
|
|
12
12
|
rucio/cli/replica.py,sha256=ZRvLONlD0enuuDLgDm5iAia-HEaOg8PDepJPImEu9fo,8169
|
|
13
|
-
rucio/cli/rse.py,sha256=
|
|
14
|
-
rucio/cli/rule.py,sha256=
|
|
13
|
+
rucio/cli/rse.py,sha256=J2IjCGUzvv9U0swFcU0ykZ1pYweHqTlXwmpGfSI-VgE,11490
|
|
14
|
+
rucio/cli/rule.py,sha256=MV9zXEbzSSHyfbktP2mjFr9Sdl-mO0t4Pq3GdGmgq_Q,8875
|
|
15
15
|
rucio/cli/scope.py,sha256=0AuXGSQWYOas1EgkFq6KCuwqh_fuMzUgnp_jqQ_Y2t0,1574
|
|
16
|
-
rucio/cli/subscription.py,sha256=
|
|
16
|
+
rucio/cli/subscription.py,sha256=kx1ox3OkWqdwfdflhdsv00XSYI6nnUZCp97YBZa4Aw4,4269
|
|
17
17
|
rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
|
|
18
18
|
rucio/cli/utils.py,sha256=uICXhVjsmnRpwvgY7FLxTvyC_88BgH5I_v7iutix4eI,9739
|
|
19
19
|
rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
20
|
-
rucio/cli/bin_legacy/rucio.py,sha256=
|
|
21
|
-
rucio/cli/bin_legacy/rucio_admin.py,sha256=
|
|
20
|
+
rucio/cli/bin_legacy/rucio.py,sha256=Q3bFveGyxmAtrTuGpgbcRk3jjuZk5ggyazlJ0p2fugY,145080
|
|
21
|
+
rucio/cli/bin_legacy/rucio_admin.py,sha256=8wot361PeDJKTZ6BDE_Of_eGe7pKcKLhj7WG5NNKhNI,140833
|
|
22
22
|
rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
|
|
23
23
|
rucio/client/accountclient.py,sha256=kScbVL9rR8pyZRmETOyz_gwffc7biaPriMgDnCLxA_0,18864
|
|
24
24
|
rucio/client/accountlimitclient.py,sha256=SWYdRMAMibWLZOhFb3HBI9vLvmp2uYjEhtM2ej1iGzQ,6905
|
|
25
|
-
rucio/client/baseclient.py,sha256=
|
|
25
|
+
rucio/client/baseclient.py,sha256=LvGIGSi-oCOWQjYUD5jG3QffDrI39eFJbi20zrjIe60,50535
|
|
26
26
|
rucio/client/client.py,sha256=XEDzDmujYyTYnSbQOBh19XirM-gxnTWC6Xy6oXjFgNk,4409
|
|
27
27
|
rucio/client/configclient.py,sha256=pbp_yEem7g8JTVVOMY-ehMyLh6T3Rxf1AxCluLE-JE8,4800
|
|
28
28
|
rucio/client/credentialclient.py,sha256=q4i_t-dIiojRmiY70iuJsAgnPqaZVwkJLbThxoc8_9k,2214
|
|
29
|
-
rucio/client/didclient.py,sha256=
|
|
29
|
+
rucio/client/didclient.py,sha256=66ODAQnrtvwwSo0Cu9FpCRo_36N28tHtUjbrz92hu_c,34619
|
|
30
30
|
rucio/client/diracclient.py,sha256=hgF_eF5_NfY0UTedrXMtmuwT4rVgCf3-bdsv7VhObDA,2467
|
|
31
|
-
rucio/client/downloadclient.py,sha256=
|
|
32
|
-
rucio/client/exportclient.py,sha256=
|
|
31
|
+
rucio/client/downloadclient.py,sha256=FoNTNNpry_2qo4XLIQXn7_AsnzLt9XllLB_J0UYTI7k,91687
|
|
32
|
+
rucio/client/exportclient.py,sha256=xYbDSw5ZQlANjcbs2-CG4jVcyhxNm9GQ827_dokSJes,3310
|
|
33
33
|
rucio/client/fileclient.py,sha256=akpgLwhbRTWNriyI8yGWTGgXbTu-Ka5jmwwVdJBwmVw,1756
|
|
34
34
|
rucio/client/importclient.py,sha256=KeEWZhjrsAR5Km_UXwwH7hzgEo9ACJaJXN6de87txe4,1560
|
|
35
35
|
rucio/client/lifetimeclient.py,sha256=lAtAzia-UWMzzkcFGPQ72kaiSe1iIbIaCBrxK0bD3GQ,5958
|
|
36
|
-
rucio/client/lockclient.py,sha256=
|
|
36
|
+
rucio/client/lockclient.py,sha256=zQKaGskTeaqH9TBpLQzHe20Qaaor2jZ84LBINElDBAM,4421
|
|
37
37
|
rucio/client/metaconventionsclient.py,sha256=tYvqXtcByiINcmZe0nT5Id2VuyJ2EDDUP2vfOPO6_yY,5655
|
|
38
|
-
rucio/client/pingclient.py,sha256=
|
|
39
|
-
rucio/client/replicaclient.py,sha256=
|
|
38
|
+
rucio/client/pingclient.py,sha256=WU7jwbHoISky-ULw9h1_VqS0opRAM3j3RFnpWC7l48Y,2392
|
|
39
|
+
rucio/client/replicaclient.py,sha256=Gi7vg87g4hhrW_UA9MB1FewGh67FW2wAnSWj4H9oMQk,20591
|
|
40
40
|
rucio/client/requestclient.py,sha256=Vr1lAmAbfX2iGzj_aKRmRFPBpMXbVxIw_0LVAZ5Xtq0,8574
|
|
41
41
|
rucio/client/richclient.py,sha256=kP6cHQsvCtKEl1c2fycqpDjfLrMAzaMxuZA_kWddm08,10111
|
|
42
42
|
rucio/client/rseclient.py,sha256=4R-WcCROjPRfWjcWuFM7itf4vmRRk0qvOa-itnTlZ8w,31858
|
|
43
43
|
rucio/client/ruleclient.py,sha256=tlYRFMKVwjCuzketqg2F4XoGydbhNAjkOnm1BGUZEVg,13639
|
|
44
44
|
rucio/client/scopeclient.py,sha256=-rXLdXScKeXavOaw9EwBHYo4SXwfcuqsOG6yGMIBWyM,3485
|
|
45
45
|
rucio/client/subscriptionclient.py,sha256=SVCOSfwJGSx-DRGznMFnt8ez1zqvGfpIKne9f7DhdNo,8417
|
|
46
|
-
rucio/client/touchclient.py,sha256=
|
|
47
|
-
rucio/client/uploadclient.py,sha256=
|
|
46
|
+
rucio/client/touchclient.py,sha256=LZXC2xI4QmmTTW4D1339sNXP1VwOKtxS-K7AaQwSlf4,2873
|
|
47
|
+
rucio/client/uploadclient.py,sha256=EQuVDOGveGF78qTz2akw86e96C-Oydux4d-imAoXYvU,72145
|
|
48
48
|
rucio/common/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
49
49
|
rucio/common/bittorrent.py,sha256=cpz-axibeHmO-Nk3-RH5JTvF6PjvmrRY0rOCgRjmaHk,8834
|
|
50
|
-
rucio/common/cache.py,sha256=
|
|
50
|
+
rucio/common/cache.py,sha256=oa1WCodXpsmHzM-LJoYL7wQHw7VMU5I0g3TBg-VzEfo,3389
|
|
51
51
|
rucio/common/checksum.py,sha256=nSqjY8TdDGohpAzcEM2fjv4FPdOKmKr_3U27HalKkoY,5254
|
|
52
|
-
rucio/common/client.py,sha256=
|
|
53
|
-
rucio/common/config.py,sha256=
|
|
54
|
-
rucio/common/constants.py,sha256=
|
|
52
|
+
rucio/common/client.py,sha256=vHJ1gnHRBiXC2ZPfSgYPlsdJi0DbvwWDdHHMEOVgBvU,3129
|
|
53
|
+
rucio/common/config.py,sha256=69AhxgP9SXXrlaTqlOCQiaiqGqHLhSfhRFasroGfDdc,24402
|
|
54
|
+
rucio/common/constants.py,sha256=5IFslVCrULMpyRX9j40wC2zAHLZM99kom1iDoqW44Lg,7603
|
|
55
55
|
rucio/common/constraints.py,sha256=MrdiAwKyoaZGfspUWX_53XS2790nXMSMg1JYmTO_ciQ,726
|
|
56
|
-
rucio/common/didtype.py,sha256=
|
|
56
|
+
rucio/common/didtype.py,sha256=nXoyK740yrwsiGX9e9vOc8UX0PXRvKry67C0Sd8SpmM,8010
|
|
57
57
|
rucio/common/exception.py,sha256=U4Jnpv8QTkNmMG2scV4bYNzOqLsMnfrmiGeSH-P_B_g,34555
|
|
58
58
|
rucio/common/extra.py,sha256=IE01275vTJobyNiYbptU9NmsUl2Ga_92FSoOODV8Qfk,1054
|
|
59
59
|
rucio/common/logging.py,sha256=_G1QDFpPLghz2VXOjdhC7j-TtZBxmPJsyJtztW7mf68,15874
|
|
60
|
-
rucio/common/pcache.py,sha256=
|
|
61
|
-
rucio/common/plugins.py,sha256=
|
|
62
|
-
rucio/common/policy.py,sha256=
|
|
60
|
+
rucio/common/pcache.py,sha256=V2OnO4h4v5yaxWT9T9DMJpm-2rLalBzzaqlUWUq5x4c,47097
|
|
61
|
+
rucio/common/plugins.py,sha256=oXATA8pgCkpfq9qleJ9tVk8aenUpKXzjOkR-Vx4c3-U,7117
|
|
62
|
+
rucio/common/policy.py,sha256=4i7SHyUpWxagS9nI72nBpWyfvYfz_aH6GH4lFMtDARo,3546
|
|
63
63
|
rucio/common/stomp_utils.py,sha256=3GTiRTJ0roe5OX_wgkVwOJYAIhGgYbhiROHc2M8LQT8,5414
|
|
64
64
|
rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,1641
|
|
65
65
|
rucio/common/test_rucio_server.py,sha256=2teFpN5Pthp-zQt1_aErOURDTgOhFP9GKdEr1NMmc4o,5085
|
|
66
|
-
rucio/common/types.py,sha256=
|
|
67
|
-
rucio/common/utils.py,sha256=
|
|
68
|
-
rucio/common/schema/__init__.py,sha256
|
|
66
|
+
rucio/common/types.py,sha256=ylN3wIQePDZ5fcqYdG66RMefjk65nKMvLSPlMTfHhOQ,11836
|
|
67
|
+
rucio/common/utils.py,sha256=Q4CC6hT42lIqSZ22U1WmsZpU7VoGXPFeeRDDbrpbT4Q,62391
|
|
68
|
+
rucio/common/schema/__init__.py,sha256=-uf3w__sNiKX21VCNjItjW6nzdTR2ysq-Bdndda_D3w,8038
|
|
69
69
|
rucio/common/schema/generic.py,sha256=NkjdxVutlRm-7AvgQf9bTW0Gb0AomuiV1iwfXOPNmIQ,15811
|
|
70
70
|
rucio/common/schema/generic_multi_vo.py,sha256=Owk9JMxycAcayTDnx-9kiXZSRBHC_jPaq79jjE1FiB0,15035
|
|
71
|
-
rucio/rse/__init__.py,sha256=
|
|
72
|
-
rucio/rse/rsemanager.py,sha256=
|
|
73
|
-
rucio/rse/translation.py,sha256=
|
|
71
|
+
rucio/rse/__init__.py,sha256=0Y-ZU-K8E-a_sc6q-rTjstREC25EmxPmtIWig5gFNU4,3361
|
|
72
|
+
rucio/rse/rsemanager.py,sha256=Qi8dUD3z0wUCr7O-GeKHKcjt9ur7Jo9d1H3lpm08KcI,41127
|
|
73
|
+
rucio/rse/translation.py,sha256=8hrq8eLuF3C6MQP9AXfb0_7S_IGMiOpBaNCTJRS5cm8,9030
|
|
74
74
|
rucio/rse/protocols/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
|
|
75
75
|
rucio/rse/protocols/bittorrent.py,sha256=ZBm_n7vU_NGXQaaZJWKQ-KUp6nYOMdbLqTvGuKN_LKk,7475
|
|
76
76
|
rucio/rse/protocols/cache.py,sha256=vJxwPa32TWMQSmETKJ_9ZcXmB4GS47yQGkB-d7IJAdc,4306
|
|
@@ -79,26 +79,26 @@ rucio/rse/protocols/gfal.py,sha256=rpWtR5uUV3tllkEArKDVo5xVR6TlKJvUBcdR3A0ehA0,2
|
|
|
79
79
|
rucio/rse/protocols/globus.py,sha256=CsnYYEeBUslJMH7rX-DN7G3280OMrEwo_AvJ20SH6qQ,9743
|
|
80
80
|
rucio/rse/protocols/http_cache.py,sha256=UVovml9RFfLUNyCJRYkYjhDev00Dd-eahJpfmvX1VDY,3014
|
|
81
81
|
rucio/rse/protocols/mock.py,sha256=yZDK_xgC7aV9sXrbVsWOliQPS8i0SpsSFigDGy32NOk,4495
|
|
82
|
-
rucio/rse/protocols/ngarc.py,sha256=
|
|
82
|
+
rucio/rse/protocols/ngarc.py,sha256=jZTJ9JFZ7CSD11dtbElzCmuwEdH-k30KMznUFUmSmAQ,7244
|
|
83
83
|
rucio/rse/protocols/posix.py,sha256=jmKcFsrvFbbimKNw9WkK2R4d_XkXx_1zM-KOYa5--Ow,10435
|
|
84
84
|
rucio/rse/protocols/protocol.py,sha256=RffRogww34G62TzwFdQCfe19xrsf_G36SwlaR4U7YdE,15286
|
|
85
85
|
rucio/rse/protocols/rclone.py,sha256=beZewvum5BN1P7VvCISAdZMuPb-n-MbwBJqeSTHplVM,15293
|
|
86
86
|
rucio/rse/protocols/rfio.py,sha256=8TJ_60pWH7ragdNG9INz_oOK1LXLc-C43iENGAKfOEg,5768
|
|
87
|
-
rucio/rse/protocols/srm.py,sha256=
|
|
87
|
+
rucio/rse/protocols/srm.py,sha256=9QFSORsXT-CR_6tDqyXCAQ5BzZifqaDItCYGIlTQGQI,14699
|
|
88
88
|
rucio/rse/protocols/ssh.py,sha256=pHPAQx2bPNkMrtqbCqDfq7OXoy7XphQ-i2Stzdvnf1k,17506
|
|
89
89
|
rucio/rse/protocols/storm.py,sha256=Z4fzklxG-x70A0Lugg1jE1RicwCSeF27iz0MXO-4to0,7864
|
|
90
|
-
rucio/rse/protocols/webdav.py,sha256=
|
|
90
|
+
rucio/rse/protocols/webdav.py,sha256=8UzmBA8vF_-exoUvpIHRQLfhvAvExQsfu-P4WbXGOXI,24810
|
|
91
91
|
rucio/rse/protocols/xrootd.py,sha256=oJHueVR44dcW5nkg8jCbr9PetV9UIti3C0tka_m7yIk,12604
|
|
92
|
-
rucio_clients-37.
|
|
93
|
-
rucio_clients-37.
|
|
94
|
-
rucio_clients-37.
|
|
95
|
-
rucio_clients-37.
|
|
96
|
-
rucio_clients-37.
|
|
97
|
-
rucio_clients-37.
|
|
98
|
-
rucio_clients-37.
|
|
99
|
-
rucio_clients-37.
|
|
100
|
-
rucio_clients-37.
|
|
101
|
-
rucio_clients-37.
|
|
102
|
-
rucio_clients-37.
|
|
103
|
-
rucio_clients-37.
|
|
104
|
-
rucio_clients-37.
|
|
92
|
+
rucio_clients-37.7.0.data/data/requirements.client.txt,sha256=uGqQvHApEbAsTgkHDqGFTmPmKtd2vL7o4rv4LO8ikjM,1790
|
|
93
|
+
rucio_clients-37.7.0.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
|
|
94
|
+
rucio_clients-37.7.0.data/data/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
|
|
95
|
+
rucio_clients-37.7.0.data/data/etc/rucio.cfg.template,sha256=wBFnaJrJmaYw3B6cZbsVzU-16pdyNJ8L86GZNJMp1Ng,8005
|
|
96
|
+
rucio_clients-37.7.0.data/data/rucio_client/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
|
|
97
|
+
rucio_clients-37.7.0.data/scripts/rucio,sha256=xQRL_0mwut48KxOgWZexsSx9jfnaZHqSTAo7OnCHAgA,5081
|
|
98
|
+
rucio_clients-37.7.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
|
|
99
|
+
rucio_clients-37.7.0.dist-info/licenses/AUTHORS.rst,sha256=c4MEJjLcFZ5euNtPA7jGFL26javbFKpWTvxBoIs_l6w,4726
|
|
100
|
+
rucio_clients-37.7.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
101
|
+
rucio_clients-37.7.0.dist-info/METADATA,sha256=ZNnNNRv_kCav-inLb3KQe2ROjwkjYzLjbBNGKXK7550,1747
|
|
102
|
+
rucio_clients-37.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
103
|
+
rucio_clients-37.7.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
|
|
104
|
+
rucio_clients-37.7.0.dist-info/RECORD,,
|
|
File without changes
|
{rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/etc/rucio.cfg.atlas.client.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rucio_clients-37.5.0.data → rucio_clients-37.7.0.data}/data/rucio_client/merge_rucio_configs.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|