rucio-clients 32.8.6__py3-none-any.whl → 35.8.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.

Files changed (92) hide show
  1. rucio/__init__.py +0 -1
  2. rucio/alembicrevision.py +1 -2
  3. rucio/client/__init__.py +0 -1
  4. rucio/client/accountclient.py +45 -25
  5. rucio/client/accountlimitclient.py +37 -9
  6. rucio/client/baseclient.py +199 -154
  7. rucio/client/client.py +2 -3
  8. rucio/client/configclient.py +19 -6
  9. rucio/client/credentialclient.py +9 -4
  10. rucio/client/didclient.py +238 -63
  11. rucio/client/diracclient.py +13 -5
  12. rucio/client/downloadclient.py +162 -51
  13. rucio/client/exportclient.py +4 -4
  14. rucio/client/fileclient.py +3 -4
  15. rucio/client/importclient.py +4 -4
  16. rucio/client/lifetimeclient.py +21 -5
  17. rucio/client/lockclient.py +18 -8
  18. rucio/client/{metaclient.py → metaconventionsclient.py} +18 -15
  19. rucio/client/pingclient.py +0 -1
  20. rucio/client/replicaclient.py +15 -5
  21. rucio/client/requestclient.py +35 -19
  22. rucio/client/rseclient.py +133 -51
  23. rucio/client/ruleclient.py +29 -22
  24. rucio/client/scopeclient.py +8 -6
  25. rucio/client/subscriptionclient.py +47 -35
  26. rucio/client/touchclient.py +8 -4
  27. rucio/client/uploadclient.py +166 -82
  28. rucio/common/__init__.py +0 -1
  29. rucio/common/cache.py +4 -4
  30. rucio/common/config.py +52 -47
  31. rucio/common/constants.py +69 -2
  32. rucio/common/constraints.py +0 -1
  33. rucio/common/didtype.py +24 -22
  34. rucio/common/exception.py +281 -222
  35. rucio/common/extra.py +0 -1
  36. rucio/common/logging.py +54 -38
  37. rucio/common/pcache.py +122 -101
  38. rucio/common/plugins.py +153 -0
  39. rucio/common/policy.py +4 -4
  40. rucio/common/schema/__init__.py +17 -10
  41. rucio/common/schema/atlas.py +7 -5
  42. rucio/common/schema/belleii.py +7 -5
  43. rucio/common/schema/domatpc.py +7 -5
  44. rucio/common/schema/escape.py +7 -5
  45. rucio/common/schema/generic.py +8 -6
  46. rucio/common/schema/generic_multi_vo.py +7 -5
  47. rucio/common/schema/icecube.py +7 -5
  48. rucio/common/stomp_utils.py +0 -1
  49. rucio/common/stopwatch.py +0 -1
  50. rucio/common/test_rucio_server.py +2 -2
  51. rucio/common/types.py +262 -17
  52. rucio/common/utils.py +743 -451
  53. rucio/rse/__init__.py +3 -4
  54. rucio/rse/protocols/__init__.py +0 -1
  55. rucio/rse/protocols/bittorrent.py +184 -0
  56. rucio/rse/protocols/cache.py +1 -2
  57. rucio/rse/protocols/dummy.py +1 -2
  58. rucio/rse/protocols/gfal.py +12 -10
  59. rucio/rse/protocols/globus.py +7 -7
  60. rucio/rse/protocols/gsiftp.py +2 -3
  61. rucio/rse/protocols/http_cache.py +1 -2
  62. rucio/rse/protocols/mock.py +1 -2
  63. rucio/rse/protocols/ngarc.py +1 -2
  64. rucio/rse/protocols/posix.py +12 -13
  65. rucio/rse/protocols/protocol.py +116 -52
  66. rucio/rse/protocols/rclone.py +6 -7
  67. rucio/rse/protocols/rfio.py +4 -5
  68. rucio/rse/protocols/srm.py +9 -10
  69. rucio/rse/protocols/ssh.py +8 -9
  70. rucio/rse/protocols/storm.py +2 -3
  71. rucio/rse/protocols/webdav.py +17 -14
  72. rucio/rse/protocols/xrootd.py +23 -17
  73. rucio/rse/rsemanager.py +19 -7
  74. rucio/vcsversion.py +4 -4
  75. rucio/version.py +5 -13
  76. rucio_clients-35.8.0.data/data/requirements.client.txt +15 -0
  77. {rucio_clients-32.8.6.data → rucio_clients-35.8.0.data}/data/rucio_client/merge_rucio_configs.py +2 -5
  78. {rucio_clients-32.8.6.data → rucio_clients-35.8.0.data}/scripts/rucio +87 -85
  79. {rucio_clients-32.8.6.data → rucio_clients-35.8.0.data}/scripts/rucio-admin +45 -32
  80. {rucio_clients-32.8.6.dist-info → rucio_clients-35.8.0.dist-info}/METADATA +13 -13
  81. rucio_clients-35.8.0.dist-info/RECORD +88 -0
  82. {rucio_clients-32.8.6.dist-info → rucio_clients-35.8.0.dist-info}/WHEEL +1 -1
  83. {rucio_clients-32.8.6.dist-info → rucio_clients-35.8.0.dist-info}/licenses/AUTHORS.rst +3 -0
  84. rucio/common/schema/cms.py +0 -478
  85. rucio/common/schema/lsst.py +0 -423
  86. rucio_clients-32.8.6.data/data/requirements.txt +0 -55
  87. rucio_clients-32.8.6.dist-info/RECORD +0 -88
  88. {rucio_clients-32.8.6.data → rucio_clients-35.8.0.data}/data/etc/rse-accounts.cfg.template +0 -0
  89. {rucio_clients-32.8.6.data → rucio_clients-35.8.0.data}/data/etc/rucio.cfg.atlas.client.template +0 -0
  90. {rucio_clients-32.8.6.data → rucio_clients-35.8.0.data}/data/etc/rucio.cfg.template +0 -0
  91. {rucio_clients-32.8.6.dist-info → rucio_clients-35.8.0.dist-info}/licenses/LICENSE +0 -0
  92. {rucio_clients-32.8.6.dist-info → rucio_clients-35.8.0.dist-info}/top_level.txt +0 -0
@@ -1,423 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Copyright European Organization for Nuclear Research (CERN) since 2012
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
-
16
- from jsonschema import validate, ValidationError
17
-
18
- from rucio.common.exception import InvalidObject
19
-
20
- ACCOUNT_LENGTH = 25
21
-
22
- ACCOUNT = {"description": "Account name",
23
- "type": "string",
24
- "pattern": "^[a-z0-9-_]{1,%s}$" % ACCOUNT_LENGTH}
25
-
26
- ACCOUNTS = {"description": "Array of accounts",
27
- "type": "array",
28
- "items": ACCOUNT,
29
- "minItems": 0,
30
- "maxItems": 1000}
31
-
32
-
33
- ACCOUNT_TYPE = {"description": "Account type",
34
- "type": "string",
35
- "enum": ["USER", "GROUP", "SERVICE"]}
36
-
37
- ACTIVITY = {"description": "Activity name",
38
- "type": "string",
39
- "enum": ["Data Brokering", "Data Consolidation", "Data rebalancing",
40
- "Debug", "Express", "Functional Test", "Group Subscriptions",
41
- "Production Input", "Production Output",
42
- "Analysis Input", "Analysis Output", "Staging",
43
- "T0 Export", "T0 Tape", "Upload/Download (Job)",
44
- "Upload/Download (User)", "User Subscriptions", "Data Challenge"]}
45
-
46
- SCOPE_LENGTH = 25
47
-
48
- SCOPE = {"description": "Scope name",
49
- "type": "string",
50
- "pattern": "^[a-zA-Z_\\-.0-9]{1,%s}$" % SCOPE_LENGTH}
51
-
52
- R_SCOPE = {"description": "Scope name",
53
- "type": "string",
54
- "pattern": "\\w"}
55
-
56
- NAME_LENGTH = 500
57
-
58
- NAME = {"description": "Data Identifier name",
59
- "type": "string",
60
- "pattern": r"^/[A-Za-z0-9\.\-\_\+\/]{1,%s}$" % NAME_LENGTH}
61
-
62
- R_NAME = {"description": "Data Identifier name",
63
- "type": "string",
64
- "pattern": "\\w"}
65
-
66
- LOCKED = {"description": "Rule locked status",
67
- "type": ["boolean", "null"]}
68
-
69
- ASK_APPROVAL = {"description": "Rule approval request",
70
- "type": ["boolean", "null"]}
71
-
72
- ASYNCHRONOUS = {"description": "Asynchronous rule creation",
73
- "type": ["boolean", "null"]}
74
-
75
- DELAY_INJECTION = {"description": "Time (in seconds) to wait before starting applying the rule. Implies asynchronous rule creation.",
76
- "type": ["integer", "null"]}
77
-
78
- PURGE_REPLICAS = {"description": "Rule purge replica status",
79
- "type": "boolean"}
80
-
81
- IGNORE_AVAILABILITY = {"description": "Rule ignore availability status",
82
- "type": "boolean"}
83
-
84
- RSE = {"description": "RSE name",
85
- "type": "string",
86
- "pattern": "^([A-Z0-9]+([_-][A-Z0-9]+)*)$"}
87
-
88
- RSE_ATTRIBUTE = {"description": "RSE attribute",
89
- "type": "string",
90
- "pattern": r'([A-Za-z0-9\._-]+[=<>][A-Za-z0-9_-]+)'}
91
-
92
- DEFAULT_RSE_ATTRIBUTE = {"description": "Default RSE attribute",
93
- "type": "string",
94
- "pattern": r'([A-Z0-9]+([_-][A-Z0-9]+)*)'}
95
-
96
- REPLICA_STATE = {"description": "Replica state",
97
- "type": "string",
98
- "enum": ["AVAILABLE", "UNAVAILABLE", "COPYING", "BEING_DELETED", "BAD", "SOURCE", "A", "U", "C", "B", "D", "S"]}
99
-
100
- DATE = {"description": "Date",
101
- "type": "string",
102
- "pattern": r'((Mon)|(Tue)|(Wed)|(Thu)|(Fri)|(Sat)|(Sun))[,]\s\d{2}\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s\d{4}\s(0\d|1\d|2[0-3])(\:)(0\d|1\d|2\d|3\d|4\d|5\d)(\:)(0\d|1\d|2\d|3\d|4\d|5\d)\s(UTC)'}
103
-
104
- DID_TYPE = {"description": "DID type",
105
- "type": "string",
106
- "enum": ["DATASET", "CONTAINER", "FILE", "F"]}
107
-
108
- GROUPING = {"description": "Rule grouping",
109
- "type": ["string", "null"],
110
- "enum": ["DATASET", "NONE", "ALL", None]}
111
-
112
- NOTIFY = {"description": "Rule notification setting",
113
- "type": ["string", "null"],
114
- "enum": ["Y", "C", "N", "P", None]}
115
-
116
- COMMENT = {"description": "Rule comment",
117
- "type": ["string", "null"],
118
- "maxLength": 250}
119
-
120
- METADATA = {"description": "Rule wfms metadata",
121
- "type": ["string", "null"],
122
- "maxLength": 3999}
123
-
124
- BYTES = {"description": "Size in bytes",
125
- "type": "integer"}
126
-
127
- ADLER32 = {"description": "adler32",
128
- "type": "string",
129
- "pattern": "^[a-fA-F\\d]{8}$"}
130
-
131
- WEIGHT = {"description": "Rule weight",
132
- "type": ["string", "null"]}
133
-
134
- MD5 = {"description": "md5",
135
- "type": "string",
136
- "pattern": "^[a-fA-F\\d]{32}$"}
137
-
138
- UUID = {"description": "Universally Unique Identifier (UUID)",
139
- "type": "string",
140
- "pattern": '^(\\{){0,1}[0-9a-fA-F]{8}-?[0-9a-fA-F]{4}-?[0-9a-fA-F]{4}-?[0-9a-fA-F]{4}-?[0-9a-fA-F]{12}(\\}){0,1}$'}
141
-
142
- META = {"description": "Data Identifier(DID) metadata",
143
- "type": "object",
144
- "properties": {"guid": UUID},
145
- "additionalProperties": True}
146
-
147
- PFN = {"description": "Physical File Name", "type": "string"}
148
-
149
- COPIES = {"description": "Number of replica copies", "type": "integer"}
150
-
151
- RSE_EXPRESSION = {"description": "RSE expression", "type": "string"}
152
-
153
- SOURCE_REPLICA_EXPRESSION = {"description": "RSE expression", "type": ["string", "null"]}
154
-
155
- LIFETIME = {"description": "Lifetime", "type": "number"}
156
-
157
- RULE_LIFETIME = {"description": "Rule lifetime", "type": ["number", "null"]}
158
-
159
- SUBSCRIPTION_ID = {"description": "Rule Subscription id", "type": ["string", "null"]}
160
-
161
- PRIORITY = {"description": "Priority of the transfers",
162
- "type": "integer"}
163
-
164
- SPLIT_CONTAINER = {"description": "Rule split container mode",
165
- "type": ["boolean", "null"]}
166
-
167
- TIME_ENTRY = {
168
- "description": "Datetime, ISO 8601",
169
- "type": "string",
170
- "pattern": r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d*$'
171
- }
172
-
173
- IP = {
174
- "description": "Internet Protocol address v4, RFC 791",
175
- "type": "string",
176
- "pattern": r'^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(\.|$)){4}$'
177
- }
178
-
179
- CLIENT_STATE = {
180
- "description": "Client state",
181
- "type": "string",
182
- "enum": ['DONE', 'FAILED', 'PROCESSING', 'ALREADY_DONE', 'FILE_NOT_FOUND', 'FOUND_IN_PCACHE', 'DOWNLOAD_ATTEMPT',
183
- 'FAIL_VALIDATE', 'FOUND_ROOT']
184
- }
185
-
186
- RULE = {"description": "Replication rule",
187
- "type": "object",
188
- "properties": {"dids": {"type": "array"},
189
- "account": ACCOUNT,
190
- "copies": COPIES,
191
- "rse_expression": RSE_EXPRESSION,
192
- "grouping": GROUPING,
193
- "weight": WEIGHT,
194
- "lifetime": RULE_LIFETIME,
195
- "locked": LOCKED,
196
- "subscription_id": SUBSCRIPTION_ID,
197
- "source_replica_expression": SOURCE_REPLICA_EXPRESSION,
198
- "activity": ACTIVITY,
199
- "notify": NOTIFY,
200
- "purge_replicas": PURGE_REPLICAS,
201
- "ignore_availability": IGNORE_AVAILABILITY,
202
- "comment": COMMENT,
203
- "ask_approval": ASK_APPROVAL,
204
- "asynchronous": ASYNCHRONOUS,
205
- "delay_injection": DELAY_INJECTION,
206
- "priority": PRIORITY,
207
- 'split_container': SPLIT_CONTAINER,
208
- 'meta': METADATA},
209
- "required": ["dids", "copies", "rse_expression"],
210
- "additionalProperties": False}
211
-
212
- RULES = {"description": "Array of replication rules",
213
- "type": "array",
214
- "items": RULE,
215
- "minItems": 1,
216
- "maxItems": 1000}
217
-
218
- COLLECTION_TYPE = {"description": "Dataset or container type",
219
- "type": "string",
220
- "enum": ["DATASET", "CONTAINER"]}
221
-
222
- COLLECTION = {"description": "Dataset or container",
223
- "type": "object",
224
- "properties": {"scope": SCOPE,
225
- "name": NAME,
226
- "type": COLLECTION_TYPE,
227
- "meta": META,
228
- "rules": RULES},
229
- "required": ["scope", "name", "type"],
230
- "additionalProperties": False}
231
-
232
- COLLECTIONS = {"description": "Array of datasets or containers",
233
- "type": "array",
234
- "items": COLLECTION,
235
- "minItems": 1,
236
- "maxItems": 1000}
237
-
238
- DID = {"description": "Data Identifier(DID)",
239
- "type": "object",
240
- "properties": {"scope": SCOPE,
241
- "name": NAME,
242
- "type": DID_TYPE,
243
- "meta": META,
244
- "rules": RULES,
245
- "bytes": BYTES,
246
- "adler32": ADLER32,
247
- "md5": MD5,
248
- "state": REPLICA_STATE,
249
- "pfn": PFN},
250
- "required": ["scope", "name"],
251
- "additionalProperties": False}
252
-
253
- DID_FILTERS = {"description": "Array to filter DIDs by metadata",
254
- "type": "array",
255
- "additionalProperties": True}
256
-
257
- R_DID = {"description": "Data Identifier(DID)",
258
- "type": "object",
259
- "properties": {"scope": R_SCOPE,
260
- "name": R_NAME,
261
- "type": DID_TYPE,
262
- "meta": META,
263
- "rules": RULES,
264
- "bytes": BYTES,
265
- "adler32": ADLER32,
266
- "md5": MD5,
267
- "state": REPLICA_STATE,
268
- "pfn": PFN},
269
- "required": ["scope", "name"],
270
- "additionalProperties": False}
271
-
272
- DIDS = {"description": "Array of Data Identifiers(DIDs)",
273
- "type": "array",
274
- "items": DID,
275
- "minItems": 1,
276
- "maxItems": 1000}
277
-
278
- R_DIDS = {"description": "Array of Data Identifiers(DIDs)",
279
- "type": "array",
280
- "items": R_DID,
281
- "minItems": 1,
282
- "maxItems": 1000}
283
-
284
- ATTACHMENT = {"description": "Attachement",
285
- "type": "object",
286
- "properties": {"scope": SCOPE,
287
- "name": NAME,
288
- "rse": {"description": "RSE name",
289
- "type": ["string", "null"],
290
- "pattern": "^([A-Z0-9]+([_-][A-Z0-9]+)*)$"},
291
- "dids": DIDS},
292
- "required": ["dids"],
293
- "additionalProperties": False}
294
-
295
- ATTACHMENTS = {"description": "Array of attachments",
296
- "type": "array",
297
- "items": ATTACHMENT,
298
- "minItems": 1,
299
- "maxItems": 1000}
300
-
301
- SUBSCRIPTION_FILTER = {"type": "object",
302
- "properties": {"datatype": {"type": "array"},
303
- "prod_step": {"type": "array"},
304
- "stream_name": {"type": "array"},
305
- "project": {"type": "array"},
306
- "scope": {"type": "array"},
307
- "pattern": {"type": "string"},
308
- "excluded_pattern": {"type": "string"},
309
- "group": {"type": "string"},
310
- "provenance": {"type": "string"},
311
- "account": ACCOUNTS,
312
- "grouping": {"type": "string"},
313
- "split_rule": {"type": "boolean"}}}
314
-
315
- ADD_REPLICA_FILE = {"description": "add replica file",
316
- "type": "object",
317
- "properties": {"scope": SCOPE,
318
- "name": NAME,
319
- "bytes": BYTES,
320
- "adler32": ADLER32},
321
- "required": ["scope", "name", "bytes", "adler32"]}
322
-
323
- ADD_REPLICA_FILES = {"description": "add replica files",
324
- "type": "array",
325
- "items": ADD_REPLICA_FILE,
326
- "minItems": 1,
327
- "maxItems": 1000}
328
-
329
- CACHE_ADD_REPLICAS = {"description": "rucio cache add replicas",
330
- "type": "object",
331
- "properties": {"files": ADD_REPLICA_FILES,
332
- "rse": RSE,
333
- "lifetime": LIFETIME,
334
- "operation": {"enum": ["add_replicas"]}},
335
- "required": ['files', 'rse', 'lifetime', 'operation']}
336
-
337
- DELETE_REPLICA_FILE = {"description": "delete replica file",
338
- "type": "object",
339
- "properties": {"scope": SCOPE,
340
- "name": NAME},
341
- "required": ["scope", "name"]}
342
-
343
- DELETE_REPLICA_FILES = {"description": "delete replica files",
344
- "type": "array",
345
- "items": DELETE_REPLICA_FILE,
346
- "minItems": 1,
347
- "maxItems": 1000}
348
-
349
- CACHE_DELETE_REPLICAS = {"description": "rucio cache delete replicas",
350
- "type": "object",
351
- "properties": {"files": DELETE_REPLICA_FILES,
352
- "rse": RSE,
353
- "operation": {"enum": ["delete_replicas"]}},
354
- "required": ['files', 'rse', 'operation']}
355
-
356
- MESSAGE_OPERATION = {"type": "object",
357
- "properties": {'operation': {"enum": ["add_replicas", "delete_replicas"]}}}
358
-
359
- ACCOUNT_ATTRIBUTE = {"description": "Account attribute",
360
- "type": "string",
361
- "pattern": r'^[a-zA-Z0-9-_\\/\\.]{1,30}$'}
362
-
363
- SCOPE_NAME_REGEXP = '/(.*)/(.*)'
364
-
365
- DISTANCE = {"description": "RSE distance",
366
- "type": "object",
367
- "properties": {
368
- "src_rse_id": {"type": "string"},
369
- "dest_rse_id": {"type": "string"},
370
- "ranking": {"type": "integer"}
371
- },
372
- "required": ["src_rse_id", "dest_rse_id", "ranking"],
373
- "additionalProperties": True}
374
-
375
- IMPORT = {"description": "import data into rucio.",
376
- "type": "object",
377
- "properties": {
378
- "rses": {
379
- "type": "object"
380
- },
381
- "distances": {
382
- "type": "object"
383
- }
384
- }}
385
-
386
- SCHEMAS = {'account': ACCOUNT,
387
- 'account_type': ACCOUNT_TYPE,
388
- 'activity': ACTIVITY,
389
- 'name': NAME,
390
- 'r_name': R_NAME,
391
- 'rse': RSE,
392
- 'rse_attribute': RSE_ATTRIBUTE,
393
- 'scope': SCOPE,
394
- 'r_scope': R_SCOPE,
395
- 'did': DID,
396
- 'did_filters': DID_FILTERS,
397
- 'r_did': R_DID,
398
- 'dids': DIDS,
399
- 'rule': RULE,
400
- 'r_dids': R_DIDS,
401
- 'collection': COLLECTION,
402
- 'collections': COLLECTIONS,
403
- 'attachment': ATTACHMENT,
404
- 'attachments': ATTACHMENTS,
405
- 'subscription_filter': SUBSCRIPTION_FILTER,
406
- 'cache_add_replicas': CACHE_ADD_REPLICAS,
407
- 'cache_delete_replicas': CACHE_DELETE_REPLICAS,
408
- 'account_attribute': ACCOUNT_ATTRIBUTE,
409
- 'import': IMPORT}
410
-
411
-
412
- def validate_schema(name, obj):
413
- """
414
- Validate object against json schema
415
-
416
- :param name: The json schema name.
417
- :param obj: The object to validate.
418
- """
419
- try:
420
- if obj:
421
- validate(obj, SCHEMAS.get(name, {}))
422
- except ValidationError as error: # NOQA, pylint: disable=W0612
423
- raise InvalidObject(f'Problem validating {name}: {error}')
@@ -1,55 +0,0 @@
1
- # All dependencies needed to run rucio client (and server/daemons) should be defined here
2
- requests>=2.25.1,<=2.31.0 # Python HTTP for Humans.
3
- urllib3~=1.26.16 # HTTP library with thread-safe connection pooling, file post, etc.
4
- dogpile.cache~=1.2.2 # Caching API plugins (1.1.2 is the first version to support pymemcache)
5
- tabulate~=0.9.0 # Pretty-print tabular data
6
- jsonschema~=4.18.4 # For JSON schema validation (Policy modules)
7
-
8
- # All dependencies needed in extras for rucio client (and server/daemons) should be defined here
9
- paramiko~=3.4.0 # ssh_extras; SSH2 protocol library (also needed in the server)
10
- kerberos~=1.3.1 # kerberos_extras for client and server
11
- pykerberos~=1.2.4 # kerberos_extras for client and server
12
- requests-kerberos>=0.14.0 # kerberos_extras for client and server
13
- python-swiftclient~=4.3.0 # swift_extras
14
- argcomplete~=3.1.1 # argcomplete_extras; Bash tab completion for argparse
15
- python-magic~=0.4.27 # dumper_extras; File type identification using libmagic
16
-
17
- # All dependencies needed to run rucio server/daemons should be defined here
18
- SQLAlchemy==2.0.19 # DB backend
19
- alembic~=1.11.1 # Lightweight database migration tool for SQLAlchemy
20
- pymemcache==4.0.0 # A comprehensive, fast, pure-Python memcached client (Used by Dogpile)
21
- python-dateutil==2.8.2 # Extensions to the standard datetime module
22
- stomp.py==8.1.0 # ActiveMQ Messaging Protocol
23
- statsd==4.0.1 # Needed to log into graphite with more than 1 Hz
24
- geoip2==4.7.0 # GeoIP2 API (for IPv6 support)
25
- google-auth==2.22.0 # Google authentication library for Python
26
- redis==4.6.0 # Python client for Redis key-value store
27
- Flask==2.3.2 # Python web framework
28
- oic==1.6.1 # for authentication via OpenID Connect protocol
29
- prometheus_client==0.17.1 # Python client for the Prometheus monitoring system
30
- boto3==1.28.5 # S3 boto protocol (new version)
31
-
32
- # All dependencies needed in extras for rucio server/daemons should be defined here
33
- cx_oracle==8.3.0 # oracle_extras
34
- psycopg2-binary==2.9.6 # postgresql_extras
35
- PyMySQL==1.1.0 # mysql_extras
36
- PyYAML==6.0.1 # globus_extras and used for reading test configuration files
37
- globus-sdk==3.24.0 # globus_extras
38
- python3-saml==1.15.0 # saml_extras
39
- pymongo==4.4.1 # pymongo (metadata plugin)
40
-
41
- # All dependencies needed to develop/test rucio should be defined here
42
- pytest==7.4.0
43
- pytest-xdist~=3.3.1 # Used for parallel testing
44
- pyflakes==3.0.1 # Passive checker of Python programs
45
- flake8==6.0.0 # Wrapper around PyFlakes&pep8; python_version < '3.9'
46
- pycodestyle==2.10.0 # New package replacing pep8; python_version < '3.9'
47
- pylint==3.0.0a7
48
- astroid==3.0.0a9
49
- virtualenv==20.24.0 # Virtual Python Environment builder
50
- xmltodict==0.13.0 # Makes working with XML feel like you are working with JSON
51
- pytz==2023.3 # World timezone definitions, modern and historical
52
- pydoc-markdown~=4.8.2 # Used for generating Markdown documentation for docusaurus
53
- sh~=2.0.4 # Convenience library for running subprocesses in Python
54
- apispec==6.3.0 # Generate OpenApi definition out of pydoc comments
55
- apispec-webframeworks # Integration of apispec in Flask
@@ -1,88 +0,0 @@
1
- rucio/__init__.py,sha256=twGL9AvTrRZ-AV0UHKFGJgiwlsWJXZjkgjzQAnxPf1Q,684
2
- rucio/alembicrevision.py,sha256=lU27AtVHfRcaWdRNg9o7eIBcwdS3FH5rEnRmdD7Nxuw,714
3
- rucio/vcsversion.py,sha256=HZFpwJrCkjkYT3b34AD_-MNZ2bZ1dOepKbE_5HVcUss,248
4
- rucio/version.py,sha256=YRZVnvS6f-tucZRnXsmGZX-WNVFkiQ9nHHyor-7-hSw,1573
5
- rucio/client/__init__.py,sha256=55QYWLSEuixqgyKIVWJfirx960FLrzyEMFxOBchmom4,684
6
- rucio/client/accountclient.py,sha256=ZVutas8r25IbwskD84SdRhYW_bdcK1QZFDJJaK_F6cA,16412
7
- rucio/client/accountlimitclient.py,sha256=_6K_CmaDi8spFZ6LXViDUr26Tg1FeeCJ__JmTlQYMvk,6020
8
- rucio/client/baseclient.py,sha256=4FLQFm6zdbzmXq4XIN7AVqDArTnrlK-wOw0B1KDveZo,47163
9
- rucio/client/client.py,sha256=C81bWzgT7OGAa7PqVilfWSts1REJueY4AaX_yRXLW4o,3072
10
- rucio/client/configclient.py,sha256=9FpXMHQBaBHK4FK2Y2LZ3zVqRCE-M7usLi4i3PMBsRs,4460
11
- rucio/client/credentialclient.py,sha256=AlBjJJOUSb--oqCLjzhibhwgFsotVsP0NXwfRvOFnuM,2048
12
- rucio/client/didclient.py,sha256=mrMQKMY3epi4sP6vTo4zN81cRBSCz-34wDFi4J8s1bg,28223
13
- rucio/client/diracclient.py,sha256=4BhPhHgn__dxHNEp3kElnhHBFfUardcHpE2km5y3yyY,1991
14
- rucio/client/downloadclient.py,sha256=Rq1z0fTZskV2yX-3HF6B41kmrRCdhyuz2xy18qQ0k3g,86127
15
- rucio/client/exportclient.py,sha256=omWMAN7jtG1jF44Y--XcaTku_Xst-a8UNdtM5Oo6Rk0,1634
16
- rucio/client/fileclient.py,sha256=cfh2wgmn81mjgDswd2Qtk-HIMfBvzPAiRjgoBJ2CCps,1669
17
- rucio/client/importclient.py,sha256=0I3SQu7konqWUG7Jh-zIieoN_5cBHieyNO0UeE32GJA,1528
18
- rucio/client/lifetimeclient.py,sha256=NqfWWWkL2_xEmjlbQg5d_JucAj5DP-vIUlvwOz5Gsrc,2881
19
- rucio/client/lockclient.py,sha256=4NoPrPF0SBjN_pE0HXn1kftA21sh0uwjxvXsnA2-TWY,3973
20
- rucio/client/metaclient.py,sha256=W7vlrk5PNteDdUFTqUX9sGMygMJlO9tfOcM-pui5Rf8,4722
21
- rucio/client/pingclient.py,sha256=fR9h-H1UNzO2i97GruG650FaSA8sc05QixYNV5j7LF0,1414
22
- rucio/client/replicaclient.py,sha256=fUvkSizRwp8B0GOM_VmnEQ__lGKy-_H7hNmmyZdUOuM,19343
23
- rucio/client/requestclient.py,sha256=WXYDdLFuVJcaFxOJEij3nqbm3VpZHDxx97WsLog8OI0,4256
24
- rucio/client/rseclient.py,sha256=-YvbhanIR70ddQUg2tboMbxWRaTwSab7PMmrGu0_4N4,27183
25
- rucio/client/ruleclient.py,sha256=K-RMRHltJUU-wbJOerQynZEZCmF-dglqnWJ2u7l2xVY,12741
26
- rucio/client/scopeclient.py,sha256=yAVD1VWEH5JGjblJ4Np6-THBoaz2rHUrUTkSvCyDfE8,3206
27
- rucio/client/subscriptionclient.py,sha256=YgkSmQ1GxNav0rRwkuidDLSFybmQC9Hdqcq0tjxXUb4,7980
28
- rucio/client/touchclient.py,sha256=_e7yLbtuaHfr9daf5nPjCc126eQ85Tny0iYG5hBtUuA,2701
29
- rucio/client/uploadclient.py,sha256=yCDVw8Vor6DuXrHbI1yI5mEj8pJtPBQIKpFnHdFHMvs,46200
30
- rucio/common/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
31
- rucio/common/cache.py,sha256=qPnkBF2Gm5c5vBkW00LTnvjnfd6McNe6SPJD7tBf2fI,2297
32
- rucio/common/config.py,sha256=r01dpOI2U0VfaFKmM8yAZGXB6upUslFK6IEPJrL_mCE,24306
33
- rucio/common/constants.py,sha256=192U97S5VIXsa8fPHUNbhlT_iXV3QdxihivXRcb7sk4,3314
34
- rucio/common/constraints.py,sha256=WiXEoU4scggR3KJzJsOJyAqLjZKrUWTsLwYf-sDO5F4,750
35
- rucio/common/didtype.py,sha256=PinoKsiZJ6GsuUde4lcwx_tLUPtnXkVYN17hZ0zWO8s,6323
36
- rucio/common/exception.py,sha256=j8a0BaSZDQr_WFCeY8lzh_-8LlsSXA22hr2rtKcyeyE,32369
37
- rucio/common/extra.py,sha256=hmpUmgw9R_hreNJ_X11kCjeWq5rL6St9oaw3JiE8AsU,1422
38
- rucio/common/logging.py,sha256=_gklh1XqTr41WfQamkyxHW7Lz53uLWh8Hcz2uqzsNNc,15070
39
- rucio/common/pcache.py,sha256=yB4FjRlOC6R3fyHzrl826CkfA-cLR8CRyAFVMidzRCo,45324
40
- rucio/common/policy.py,sha256=gew4oR3mwMWupKTgd4rZ7gKUK2YZGbgPIWgjtZ-O1Ig,3037
41
- rucio/common/stomp_utils.py,sha256=JkPYNEa5F6J5QUhxW-YTMShwvhRE_Y2ukTtAQfB_TAY,5438
42
- rucio/common/stopwatch.py,sha256=p9OD5zv1jbo5SRyRptpr0zGYbUskmACZfCiM3R1rhxY,1665
43
- rucio/common/test_rucio_server.py,sha256=g3HRli56tX1TvI2_vQwzssY0fFhaYmfpg4TCY-MPSnI,4929
44
- rucio/common/types.py,sha256=Dl2vwnDMlECIPaXAFSJM6ltQMD3TZdfDIqNX1ikBvms,4587
45
- rucio/common/utils.py,sha256=Hy3blAwLE2wJ2_FYYVHdn3yby1Uir_Zle29wM_fUR5Q,69433
46
- rucio/common/schema/__init__.py,sha256=LJifsVgQqykj9MnBlqt9X4J7Hd0V3p6QCojTFrYMMdQ,5176
47
- rucio/common/schema/atlas.py,sha256=-4q7q7BEW8LR6Q88P6_Mfe_ZuVDGwB8AJw-Q2akrwRs,15613
48
- rucio/common/schema/belleii.py,sha256=-dV4VCvFafNZEkObdPy27zSdjY14C5L1WUuc_wa2U6I,15430
49
- rucio/common/schema/cms.py,sha256=QS6En5L4gOIGOgHGueCdE66RPMNKW9rnGrb5q3JH1q8,18547
50
- rucio/common/schema/domatpc.py,sha256=vRewL2hp1qONX7Bud6C115Ei2D0XVz-WtDDNHLD5AH4,15011
51
- rucio/common/schema/escape.py,sha256=iVD7s3uW836wmvm4UYJPXu8-lSKKWutJOA52uB5FVV4,15950
52
- rucio/common/schema/generic.py,sha256=AMuDoz0L5t-rzBHhOBJt2rhLWAIxyJZdizgr1cMeYow,16265
53
- rucio/common/schema/generic_multi_vo.py,sha256=qiqZhskbtcxQTqGZsrUJgAn7XgU05HaycZtDPzGKkOk,15492
54
- rucio/common/schema/icecube.py,sha256=SBe9ctW_RA66JnhTVAFhZeJ0mk_QaeWbzstFLBd_2As,15301
55
- rucio/common/schema/lsst.py,sha256=Zjow2SeOT2jFjllqXSPFkPpvzqd6Mi0aTsy94K8BYw8,15909
56
- rucio/rse/__init__.py,sha256=yLUvu0yYEAs2UrGaPWlmbi-mGBDjjtHkMffWSEbh8BE,3327
57
- rucio/rse/rsemanager.py,sha256=e9tVcdXaIHbAtmgp93OebIAClcJlcebTqBDGba-hxY0,37286
58
- rucio/rse/protocols/__init__.py,sha256=9uSbI9oklSonIfZyzqsaTGdhJAZ0wSkl01QSnntDaJA,642
59
- rucio/rse/protocols/cache.py,sha256=kv1FZD15HnZ4xt9vi11GXRxg6NtD1i2o4ygJYWdQOwo,4627
60
- rucio/rse/protocols/dummy.py,sha256=uGudzQkf2ScgNf8YwrZXng7EmPKnD6AQnkqMGFEIFpo,4249
61
- rucio/rse/protocols/gfal.py,sha256=DEtP9YXHnu1S2IT-cocM_vAuHjyhfWYUoUZvjJd2nac,29035
62
- rucio/rse/protocols/globus.py,sha256=goAOPx1o7ccZsDWcLYcdsFeKYYiGEkGJTSpEfagIV3s,9704
63
- rucio/rse/protocols/gsiftp.py,sha256=6Wup-ETBONpQRBG7RGWYZrFWh_9f0rWCrDlJ6lShSKA,3433
64
- rucio/rse/protocols/http_cache.py,sha256=zJwfBOedDAW_psqtZnhyrcj74HT8NlzC2tEwxNPqbLg,2999
65
- rucio/rse/protocols/mock.py,sha256=UAfXrdM5FivSe4UFkfes3pr8RZjFjaV5fyiW6exU_z0,4519
66
- rucio/rse/protocols/ngarc.py,sha256=2JFTAp4lptvCR36y9ErYGkUlc5jLWkgibCyYeU5sGnA,7248
67
- rucio/rse/protocols/posix.py,sha256=5YthS746goCZ112AFcp6wWuu6wrOpgQfI0G9DHDHEZA,10418
68
- rucio/rse/protocols/protocol.py,sha256=se7_SqVuYDek4RfKjr7MZdhF4Im6HKPjKgjqiG3JWjk,22818
69
- rucio/rse/protocols/rclone.py,sha256=e93CN9RflX6hEAi6Og_eP9kML5mtY9rTJHr79fsYwYU,15276
70
- rucio/rse/protocols/rfio.py,sha256=Gnvwtn7nwyI6-VVeAWtrFSer5mN4ACMiJ7hNU8i8CDA,5523
71
- rucio/rse/protocols/srm.py,sha256=ttp5TsYjIb1mD2iZkwaN5NwkH6yQideVr3hXmOJmIA4,14671
72
- rucio/rse/protocols/ssh.py,sha256=bibRq8A6w0CCQ-XdJJz28v5ALXPXux9zHU2vv9pjaio,17487
73
- rucio/rse/protocols/storm.py,sha256=-qcQU9w2cwYIJiP6xkMGuUsye1rnssmyZONIjqgTwtw,8151
74
- rucio/rse/protocols/webdav.py,sha256=ID9nJo88p2ng4M4OGY77ZKgG2x63bME2jYLUeI4x23E,22206
75
- rucio/rse/protocols/xrootd.py,sha256=PPothpJhO2d7N_8vjFKrT6pR3D_kYDT_VjOxlam5vRQ,12489
76
- rucio_clients-32.8.6.data/data/requirements.txt,sha256=FXk7izEskAPlNWZWNCqAKhAp7JSTfLpXzbxudpo7koc,4837
77
- rucio_clients-32.8.6.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
78
- rucio_clients-32.8.6.data/data/etc/rucio.cfg.atlas.client.template,sha256=O24QKo-0OX4Clj7Bp2Bv9W-b0NtLkyYg3jNNpz_alr0,1311
79
- rucio_clients-32.8.6.data/data/etc/rucio.cfg.template,sha256=z1s8B-_C-gKsPM8ZtCOZDTKLd0Emj8IYgLBz4B9dCw4,8534
80
- rucio_clients-32.8.6.data/data/rucio_client/merge_rucio_configs.py,sha256=B0JElUmPq134G8XcQTdOwuMXcPKmH75_6FbEANHiMUU,6189
81
- rucio_clients-32.8.6.data/scripts/rucio,sha256=rF0ktQB8HN0uI_9Sb8yVLLWYWwpX-sWquGyZ67gUwOA,128842
82
- rucio_clients-32.8.6.data/scripts/rucio-admin,sha256=q7Dt6xfthr77GFRfEJTpzHlt3kcvDrnYEMCi3z2qTww,133717
83
- rucio_clients-32.8.6.dist-info/licenses/AUTHORS.rst,sha256=jQRZwvXp-5rhnfCyoeeNtd2uc3HqO2nvWg1zbupVkHM,4428
84
- rucio_clients-32.8.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
85
- rucio_clients-32.8.6.dist-info/METADATA,sha256=PpwbT3aI6XiOKgse7HBHOXkfnj3OfzC6aWocj40U_Fg,1747
86
- rucio_clients-32.8.6.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
87
- rucio_clients-32.8.6.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
88
- rucio_clients-32.8.6.dist-info/RECORD,,