The Client API ReferenceΒΆ

Rucio includes a client class to removes some of the complexity of dealing with raw HTTP requests against the RESTful API.

All client methods are accesible through the high level class Client. Below is one example of using Rucio Client class:

>>> from rucio.client import Client
>>> CLIENT = Client()
>>> CLIENT.ping()

The methods are separated per resource type.