rucio-clients 38.0.0rc3__py3-none-any.whl → 38.2.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/account.py CHANGED
@@ -212,5 +212,5 @@ def identity_add(ctx, account_name, type_, id, email, password):
212
212
  @click.pass_context
213
213
  def identity_remove(ctx, account_name, type_, id):
214
214
  """Revoke a given ID's access from an account"""
215
- args = Arguments({"no_pager": ctx.obj.no_pager, "account": account_name, "authtype": type_, "id": id})
215
+ args = Arguments({"no_pager": ctx.obj.no_pager, "account": account_name, "authtype": type_, "identity": id})
216
216
  identity_delete(args, ctx.obj.client, ctx.obj.logger, ctx.obj.console, ctx.obj.spinner)
@@ -32,7 +32,6 @@ from rich.status import Status
32
32
  from rich.text import Text
33
33
  from rich.theme import Theme
34
34
  from rich.traceback import install
35
- from rich.tree import Tree
36
35
  from tabulate import tabulate
37
36
 
38
37
  # rucio module has the same name as this executable module, so this rule fails. pylint: disable=no-name-in-module
@@ -716,64 +715,7 @@ def list_parent_dids(args, client, logger, console, spinner):
716
715
  spinner.update(status='Fetching parent DIDs')
717
716
  spinner.start()
718
717
 
719
- if args.pfns:
720
- dict_datasets = {}
721
- output = []
722
- for res in client.get_did_from_pfns(args.pfns):
723
- for key in res:
724
- if key not in dict_datasets:
725
- dict_datasets[key] = []
726
- for rule in client.list_associated_rules_for_file(res[key]['scope'], res[key]['name']):
727
- if f"{rule['scope']}:{rule['name']}" not in dict_datasets[key]:
728
- dict_datasets[key].append(f"{rule['scope']}:{rule['name']}")
729
-
730
- for i, pfn in enumerate(dict_datasets):
731
- if cli_config == 'rich':
732
- parent_tree = Tree('')
733
- for parent in dict_datasets[pfn]:
734
- parent_tree.add(parent)
735
- table = generate_table([['PFN', pfn], ['Parents', parent_tree]], col_alignments=['left', 'left'], row_styles=['none'])
736
- output.append(table)
737
- else:
738
- print('PFN: ', pfn)
739
- print('Parents: ', ','.join(dict_datasets[pfn]))
740
-
741
- if cli_config == 'rich':
742
- spinner.stop()
743
- print_output(*output, console=console, no_pager=args.no_pager)
744
- elif args.guids:
745
- output = []
746
- guids = []
747
- for input_ in args.guids:
748
- try:
749
- uuid.UUID(input_)
750
- except ValueError:
751
- print(f'Ignoring invalid GUID: {input_}')
752
- continue
753
- dict_datasets = {}
754
- for guid in guids:
755
- for did in client.get_dataset_by_guid(guid):
756
- if guid not in dict_datasets:
757
- dict_datasets[guid] = []
758
- for rule in client.list_associated_rules_for_file(did['scope'], did['name']):
759
- if f"{rule['scope']}:{rule['name']}" not in dict_datasets[guid]:
760
- dict_datasets[guid].append(f"{rule['scope']}:{rule['name']}")
761
-
762
- for i, guid in enumerate(dict_datasets):
763
- if cli_config == 'rich':
764
- parent_tree = Tree('')
765
- for parent in dict_datasets[guid]:
766
- parent_tree.add(parent)
767
- table = generate_table([['GUID', guid], ['Parents', parent_tree]], col_alignments=['left', 'left'], row_styles=['none'])
768
- output.append(table)
769
- else:
770
- print('GUID: ', guid)
771
- print('Parents : ', ','.join(dict_datasets[guid]))
772
-
773
- if cli_config == 'rich':
774
- spinner.stop()
775
- print_output(*output, console=console, no_pager=args.no_pager)
776
- elif args.did:
718
+ if args.did:
777
719
  table_data = []
778
720
  scope, name = get_scope(args.did, client)
779
721
  for dataset in client.list_parent_dids(scope=scope, name=name):
@@ -789,7 +731,7 @@ def list_parent_dids(args, client, logger, console, spinner):
789
731
  else:
790
732
  print(tabulate(table_data, tablefmt=tablefmt, headers=['SCOPE:NAME', '[DID TYPE]']))
791
733
  else:
792
- raise InputValidationError('At least one option has to be given. Use -h to list the options.')
734
+ raise InputValidationError('A DID must be provided. Use -h to list the options.')
793
735
  return SUCCESS
794
736
 
795
737
 
@@ -2403,8 +2345,6 @@ You can filter by key/value, e.g.::
2403
2345
  ''')
2404
2346
  list_parent_parser.set_defaults(function=list_parent_dids)
2405
2347
  list_parent_parser.add_argument(dest='did', action='store', nargs='?', default=None, help='Data identifier.')
2406
- list_parent_parser.add_argument('--pfn', dest='pfns', action='store', nargs='+', help='List parent dids for these pfns.')
2407
- list_parent_parser.add_argument('--guid', dest='guids', action='store', nargs='+', help='List parent dids for these guids.')
2408
2348
 
2409
2349
  # argparse 2.7 does not allow aliases for commands, thus the list-parent-datasets is a copy&paste from list-parent-dids
2410
2350
  list_parent_datasets_parser = subparsers.add_parser('list-parent-datasets', help='List parent DIDs for a given DID', description='List all parents Data IDentifier that contains the target Data IDentifier.',
@@ -2423,8 +2363,6 @@ You can filter by key/value, e.g.::
2423
2363
 
2424
2364
  list_parent_datasets_parser.set_defaults(function=list_parent_dids)
2425
2365
  list_parent_datasets_parser.add_argument(dest='did', action='store', nargs='?', default=None, help='Data identifier.')
2426
- list_parent_datasets_parser.add_argument('--pfn', dest='pfns', action='store', nargs='+', help='List parent dids for these pfns.')
2427
- list_parent_datasets_parser.add_argument('--guid', dest='guids', action='store', nargs='+', help='List parent dids for these guids.')
2428
2366
 
2429
2367
  # The list-scopes command
2430
2368
  scope_list_parser = subparsers.add_parser('list-scopes', help='List all available scopes.',
rucio/cli/did.py CHANGED
@@ -37,11 +37,8 @@ def did():
37
37
  @click.option("--short", is_flag=True, default=False, help="Dump the list of DIDs")
38
38
  @click.argument("did-pattern", nargs=-1)
39
39
  @click.option("--parent", default=False, is_flag=True, help="List the parents of the DID - must use a full DID scope and name")
40
- # TODO Implement or remove option - view https://github.com/rucio/rucio/issues/7230
41
- @click.option("--pfn", hidden=True)
42
- @click.option("--guid", hidden=True)
43
40
  @click.pass_context
44
- def list_(ctx, did_pattern, recursive, filter_, short, parent, pfn, guid):
41
+ def list_(ctx, did_pattern, recursive, filter_, short, parent):
45
42
  """
46
43
  List the Data IDentifiers matching certain pattern.
47
44
  Only the collections (i.e. dataset or container) are returned by default.
rucio/cli/opendata.py CHANGED
@@ -95,7 +95,7 @@ def remove_opendata_did(ctx: "Context", did: str) -> None:
95
95
  @click.option("--public", required=False, is_flag=True, default=False,
96
96
  help="Perform request against the public endpoint")
97
97
  @click.pass_context
98
- def get_opendata_did(ctx: "Context", did: str, include_files: bool, include_metadata: bool, public: bool) -> None:
98
+ def get_opendata_did(ctx: "Context", did: str, files: bool, meta: bool, public: bool) -> None:
99
99
  """
100
100
  Get information about an Opendata DID, optionally including files and metadata.
101
101
  """
@@ -103,7 +103,7 @@ def get_opendata_did(ctx: "Context", did: str, include_files: bool, include_meta
103
103
  client = ctx.obj.client
104
104
  scope, name = extract_scope(did)
105
105
  result = client.get_opendata_did(scope=scope, name=name, public=public,
106
- include_files=include_files, include_metadata=include_metadata,
106
+ include_files=files, include_metadata=meta,
107
107
  include_doi=True)
108
108
  # TODO: pretty print using tables, etc
109
109
  print(json.dumps(result, indent=4, sort_keys=True, ensure_ascii=False))
@@ -59,23 +59,15 @@ def _get_generic_schema_module():
59
59
  if not _is_multivo():
60
60
  GENERIC_FALLBACK = 'generic'
61
61
 
62
- if config.config_has_section('policy'):
63
- try:
64
- if 'RUCIO_POLICY_PACKAGE' in environ:
65
- policy = environ['RUCIO_POLICY_PACKAGE']
66
- else:
67
- policy = config.config_get('policy', 'package', check_config_table=False)
68
- package_module = importlib.import_module(policy)
69
- check_policy_module_version(package_module)
70
- policy = policy + ".schema"
71
- except (NoOptionError, NoSectionError, ModuleNotFoundError):
72
- # fall back to old system for now
73
- try:
74
- policy = config.config_get('policy', 'schema', check_config_table=False)
75
- except (NoOptionError, NoSectionError):
76
- policy = GENERIC_FALLBACK
77
- policy = 'rucio.common.schema.' + policy.lower()
78
- else:
62
+ try:
63
+ if 'RUCIO_POLICY_PACKAGE' in environ:
64
+ policy = environ['RUCIO_POLICY_PACKAGE']
65
+ else:
66
+ policy = config.config_get('policy', 'package', check_config_table=False, raise_exception=True)
67
+ package_module = importlib.import_module(policy)
68
+ check_policy_module_version(package_module)
69
+ policy = policy + ".schema"
70
+ except (NoOptionError, NoSectionError, ModuleNotFoundError):
79
71
  policy = 'rucio.common.schema.' + GENERIC_FALLBACK.lower()
80
72
 
81
73
  try:
@@ -102,24 +94,16 @@ if not _is_multivo():
102
94
 
103
95
  def load_schema_for_vo(vo: str) -> None:
104
96
  generic_fallback = 'generic_multi_vo'
105
- if config.config_has_section('policy'):
106
- try:
107
- env_name = 'RUCIO_POLICY_PACKAGE_' + vo.upper()
108
- if env_name in environ:
109
- policy = environ[env_name]
110
- else:
111
- policy = config.config_get('policy', 'package-' + vo, check_config_table=False)
112
- package_module = importlib.import_module(policy)
113
- check_policy_module_version(package_module)
114
- policy = policy + ".schema"
115
- except (NoOptionError, NoSectionError, ModuleNotFoundError):
116
- # fall back to old system for now
117
- try:
118
- policy = config.config_get('policy', 'schema', check_config_table=False)
119
- except (NoOptionError, NoSectionError):
120
- policy = generic_fallback
121
- policy = 'rucio.common.schema.' + policy.lower()
122
- else:
97
+ try:
98
+ env_name = 'RUCIO_POLICY_PACKAGE_' + vo.upper()
99
+ if env_name in environ:
100
+ policy = environ[env_name]
101
+ else:
102
+ policy = config.config_get('policy', 'package-' + vo, check_config_table=False, raise_exception=True)
103
+ package_module = importlib.import_module(policy)
104
+ check_policy_module_version(package_module)
105
+ policy = policy + ".schema"
106
+ except (NoOptionError, NoSectionError, ModuleNotFoundError):
123
107
  policy = 'rucio.common.schema.' + generic_fallback.lower()
124
108
 
125
109
  try:
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': '38.0.0rc3',
8
- 'branch_nick': 'master',
9
- 'revision_id': 'c4df1306d192b518b38e023e783ea998c6c0dfb5',
10
- 'revno': 13917
7
+ 'version': '38.2.0',
8
+ 'branch_nick': 'release-38-LTS',
9
+ 'revision_id': 'af0cedfc38c83fa06e4b82991d0c04a1129440a9',
10
+ 'revno': 13963
11
11
  }
@@ -17,6 +17,7 @@ import argparse
17
17
  import sys
18
18
  from typing import TYPE_CHECKING, Optional
19
19
 
20
+ from rucio.cli.bin_legacy.rucio import get_parser
20
21
  from rucio.cli.bin_legacy.rucio import main as main_legacy
21
22
  from rucio.cli.command import main
22
23
  from rucio.common.utils import setup_logger
@@ -119,9 +120,11 @@ if __name__ == "__main__":
119
120
  main() # pylint: disable=E1120
120
121
 
121
122
  else:
122
- make_warning(logger)
123
123
  try:
124
+ get_parser().parse_args()
125
+ make_warning(logger)
124
126
  main_legacy()
127
+
125
128
  # Make a custom warning - show the new help menu when invalid commands are called.
126
129
  except argparse.ArgumentError:
127
130
  logger.error("Invalid argument(s) - %s " % sys.argv[1:])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rucio-clients
3
- Version: 38.0.0rc3
3
+ Version: 38.2.0
4
4
  Summary: Rucio Client Lite Package
5
5
  Home-page: https://rucio.cern.ch/
6
6
  Author: Rucio
@@ -1,15 +1,15 @@
1
1
  rucio/__init__.py,sha256=Y7cPPlHVQPFyN8bSPFC0W3WViEdONr5g_qwBub5rufE,660
2
2
  rucio/alembicrevision.py,sha256=9tnjQLFkTpUEcZqcw-ojWpt4Wbg-5OtMJ0CfjPc0wX8,690
3
- rucio/vcsversion.py,sha256=WgL70niCgwh9J3Ao0R2KZWwe8TZ1oXyomfCvcQ-NjW4,243
3
+ rucio/vcsversion.py,sha256=uHQM9OSSiEEfKG2w_fZNvACznCg7UVAkxESMuD6mJlc,248
4
4
  rucio/version.py,sha256=IwsNb1QQk0D092QQbR2K9wBPF2Akny1RGs-ZZziUohE,1519
5
5
  rucio/cli/__init__.py,sha256=GIkHmxgE3xdvWSf-7ZnvVaJmbs7NokaSjbFzsrXOG9o,662
6
- rucio/cli/account.py,sha256=7YWLfmiplhCjaaHNSYBzd7d_4yYzxUSRrsT0xGcNr2w,9452
6
+ rucio/cli/account.py,sha256=2Fe-iEaTfLxqlW5mDJsJPwD-Etm4VqaMowTSA67hZIo,9458
7
7
  rucio/cli/command.py,sha256=dr9bhugorgc2kX-JsdrRsq9Yfh92sYwaALB7CrX6PNI,10835
8
8
  rucio/cli/config.py,sha256=L7vhzAyUVKZBWKKDvrLl7zCei8O6kDyzX_x_-p-vk9M,2706
9
- rucio/cli/did.py,sha256=68LZ7CESYag6Uob39wNob-AgGmASIPyZSz33LZUkopk,9188
9
+ rucio/cli/did.py,sha256=IDrFFAfMhnVhGJMBm9QySO1avnbRcx_VTSaDMi41am8,9020
10
10
  rucio/cli/download.py,sha256=nltAf8nm8P6nrfIu0CUveY4YM6oL5nSR3w6yS4qBbw0,6248
11
11
  rucio/cli/lifetime_exception.py,sha256=joi9HdaiYP_g3115IR_ImX7oFlEg1xbSaK-IzmoIVcY,1498
12
- rucio/cli/opendata.py,sha256=wnfzcVBpCmkA9WQFqNsqtMuT-2QRl1LHBjLBgm_c4AU,4741
12
+ rucio/cli/opendata.py,sha256=xcZno6G_qzz_5QQwiyFzcQrRVU1q79HeRJqcXOOa3y0,4701
13
13
  rucio/cli/replica.py,sha256=ZeknO6aKOambwe7lJGWcI_YAflz1-oMYBSZTYvMVIe0,8657
14
14
  rucio/cli/rse.py,sha256=J2IjCGUzvv9U0swFcU0ykZ1pYweHqTlXwmpGfSI-VgE,11490
15
15
  rucio/cli/rule.py,sha256=H_Yw8hx_DiqX_twEtgEY0x2AkftsRyLboMaXv_Zc6Ac,9090
@@ -18,7 +18,7 @@ rucio/cli/subscription.py,sha256=kx1ox3OkWqdwfdflhdsv00XSYI6nnUZCp97YBZa4Aw4,426
18
18
  rucio/cli/upload.py,sha256=29gJGfb7jsiA6-UwPCSg1kGZu-OJ-bdxUZr27S2mJEM,3237
19
19
  rucio/cli/utils.py,sha256=AEmdlvvebyFqBiM5z2HWrR1_kWmcDR1yLq3694rFqMs,10410
20
20
  rucio/cli/bin_legacy/__init__.py,sha256=Q91iipvMQ0VzNMuYcYQfDujZ0vL-hrB4Kmd0YrgtHGQ,618
21
- rucio/cli/bin_legacy/rucio.py,sha256=x6EDudwDEMHComUXABVALkGsbwQiAhkzWuH2fEww_RY,143999
21
+ rucio/cli/bin_legacy/rucio.py,sha256=Z53nUKd5orN9sFPHXcC6XC2diwMo1Dx5AzJhT3ha7Dw,140892
22
22
  rucio/cli/bin_legacy/rucio_admin.py,sha256=pRpJhEGMr3-xzw3EsGeVayEiu8NI_UxEI2wSIbeulzI,141046
23
23
  rucio/client/__init__.py,sha256=0-jkSlrJf-eqbN4swA5a07eaWd6_6JXPQPLXMs4A3iI,660
24
24
  rucio/client/accountclient.py,sha256=kScbVL9rR8pyZRmETOyz_gwffc7biaPriMgDnCLxA_0,18864
@@ -66,7 +66,7 @@ rucio/common/stopwatch.py,sha256=_9zxoLjr8A0wUDJsljK4vZNDCI-dIOgpcxXiCNVJcHU,164
66
66
  rucio/common/test_rucio_server.py,sha256=2teFpN5Pthp-zQt1_aErOURDTgOhFP9GKdEr1NMmc4o,5085
67
67
  rucio/common/types.py,sha256=joi_upIQsi3U3HMmyfVOVQem3404kGI6OixyFzrqavk,11941
68
68
  rucio/common/utils.py,sha256=FauL76qhhSm2IZxKrZT7cSnURPCytWAZP5awHdTAXNY,67298
69
- rucio/common/schema/__init__.py,sha256=-uf3w__sNiKX21VCNjItjW6nzdTR2ysq-Bdndda_D3w,8038
69
+ rucio/common/schema/__init__.py,sha256=gC39BlHz45lX6-OTtIL5U8RqVJpZGk0RfqCwSKRseYU,7284
70
70
  rucio/common/schema/generic.py,sha256=NmmQJ0Z8dHbL7xnbFL7rvXFK29wA8ZGtkwwwMAxzVC0,15887
71
71
  rucio/common/schema/generic_multi_vo.py,sha256=UK5DOO-dO7pY6O44t9SJqzeS3xUye_stu_f-EVD-r0s,15107
72
72
  rucio/rse/__init__.py,sha256=0Y-ZU-K8E-a_sc6q-rTjstREC25EmxPmtIWig5gFNU4,3361
@@ -90,16 +90,16 @@ rucio/rse/protocols/ssh.py,sha256=pHPAQx2bPNkMrtqbCqDfq7OXoy7XphQ-i2Stzdvnf1k,17
90
90
  rucio/rse/protocols/storm.py,sha256=Z4fzklxG-x70A0Lugg1jE1RicwCSeF27iz0MXO-4to0,7864
91
91
  rucio/rse/protocols/webdav.py,sha256=8UzmBA8vF_-exoUvpIHRQLfhvAvExQsfu-P4WbXGOXI,24810
92
92
  rucio/rse/protocols/xrootd.py,sha256=oJHueVR44dcW5nkg8jCbr9PetV9UIti3C0tka_m7yIk,12604
93
- rucio_clients-38.0.0rc3.data/data/requirements.client.txt,sha256=ob8DW6vHurtEcXZ2j_u67WO_M2Mf7dzJFROKqIQINTo,1790
94
- rucio_clients-38.0.0rc3.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
95
- rucio_clients-38.0.0rc3.data/data/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
96
- rucio_clients-38.0.0rc3.data/data/etc/rucio.cfg.template,sha256=hKnGDIm7oIFWBhj6vr5L6bE4TDRHT-7eZh9IsqOHbpo,8023
97
- rucio_clients-38.0.0rc3.data/data/rucio_client/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
98
- rucio_clients-38.0.0rc3.data/scripts/rucio,sha256=MfHQzU-lmFsKWORw_aJ632TaKE9Oq_AqrFAEIbA0Drs,5167
99
- rucio_clients-38.0.0rc3.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
100
- rucio_clients-38.0.0rc3.dist-info/licenses/AUTHORS.rst,sha256=c4MEJjLcFZ5euNtPA7jGFL26javbFKpWTvxBoIs_l6w,4726
101
- rucio_clients-38.0.0rc3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
102
- rucio_clients-38.0.0rc3.dist-info/METADATA,sha256=1Uc6tAt9RuhXGbx2IpzgP-RfmyUHD2rTDSjgc7Rqpzo,1743
103
- rucio_clients-38.0.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
104
- rucio_clients-38.0.0rc3.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
105
- rucio_clients-38.0.0rc3.dist-info/RECORD,,
93
+ rucio_clients-38.2.0.data/data/requirements.client.txt,sha256=ob8DW6vHurtEcXZ2j_u67WO_M2Mf7dzJFROKqIQINTo,1790
94
+ rucio_clients-38.2.0.data/data/etc/rse-accounts.cfg.template,sha256=IfDnXVxBPUrMnTMbJnd3P7eYHgY1C4Kfz7xKskJs-FI,543
95
+ rucio_clients-38.2.0.data/data/etc/rucio.cfg.atlas.client.template,sha256=aHP1oX9m5yA8xVTTT2Hz6AyOYu92-Bcd5LF0i3AZRQw,1350
96
+ rucio_clients-38.2.0.data/data/etc/rucio.cfg.template,sha256=hKnGDIm7oIFWBhj6vr5L6bE4TDRHT-7eZh9IsqOHbpo,8023
97
+ rucio_clients-38.2.0.data/data/rucio_client/merge_rucio_configs.py,sha256=u62K1EcCGydM5nZA30zhlqWo4EX5N87b_MDkx5YfzVI,6163
98
+ rucio_clients-38.2.0.data/scripts/rucio,sha256=f8f5X6O9W2JfUqWiSdsuDROekGt28p9CBvFZropZ-C0,5260
99
+ rucio_clients-38.2.0.data/scripts/rucio-admin,sha256=AhPO6-fAPviHObhB_Yi7GJXKfjpaH6m0RqxwctBeFlE,4229
100
+ rucio_clients-38.2.0.dist-info/licenses/AUTHORS.rst,sha256=FQ5q2_bY3dYKDmEw-8YD-SgPJ4fgnM1XI5wRF5ksQPg,4771
101
+ rucio_clients-38.2.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
102
+ rucio_clients-38.2.0.dist-info/METADATA,sha256=xfVRC3epL-Wof1Oph1gr_MWHCJjKKuA48VZnju-MjQ8,1740
103
+ rucio_clients-38.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
104
+ rucio_clients-38.2.0.dist-info/top_level.txt,sha256=lJM8plwW0ePPICkwFnpYzfdqHnSv6JZr1OD4JEysPgM,6
105
+ rucio_clients-38.2.0.dist-info/RECORD,,
@@ -69,6 +69,7 @@ Individual contributors to the source code
69
69
  - Maximilian Linhoff, <maximilian.linhoff@tu-dortmund.de>, 2024
70
70
  - Eric Banzuzi, <eric.banzuzi@gmail.com>, 2024
71
71
  - Paul Millar, <paul.millar@desy.de>, 2025
72
+ - Vimalan S <vimalan.github@gmail.com>, 2025
72
73
 
73
74
  Organisations employing contributors
74
75
  ------------------------------------