Client
We provide four ways in which you can interact with the server to manage your vantage6 resources: the user interface (UI), the Python client, the R client, and the server API.
What you need to install depends on which interface you choose. In order to use the UI or the server API, you usually don't need to install anything: the UI is a website, and the API can be called via HTTP requests from a programming language of your choice. For the UI, you only need to set it up in case you are setting up your own server (see User Interface for instructions).
Installation instructions for the Python client and R client are below. For most use cases, we recommend to use the UI (for anything except creating tasks) and/or the Python Client (which covers server API functionality completely).
Python client library
Before you install the Python client, we recommended to check the version of the server you are going to interact with first. The easiest way of doing that is checking the /version
endpoint of the server you are going to use:
Retrieve version information of the server
GET
https://SERVER[/api_path]/version
Then you can install the vantage6-client
with:
where you add the version you want to install. You may also leave out the version to install the most recent version.
R client library
The R client currently only supports creating tasks and retrieving their results. It can not (yet) be used to manage resources, such as creating and deleting users and organizations.
You can install the R client by running:
Last updated
Was this helpful?