Replies: 1 comment 8 replies
-
All existing methods are supported (basically, all symbols starting with For example: def get_users(server):
url=f"https://{server}:8444/DataManagement/FileCatalog"
params = {
"method": "getUsers"
}
return _query(url, params)
def get_file_metadata(server, lfns):
url=f"https://{server}:8444/DataManagement/FileCatalog"
params = {
"method": "getFileMetadata",
"args": json.dumps([lfns])
}
return _query(url, params) |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Is there somewhere which has a description of how to interact with the File Catalog via HTTP?
The only example seems to be for a
whoami
such as below.Any guidance would be very much appreciated, particularly on what methods are supported.
Beta Was this translation helpful? Give feedback.
All reactions