Bacalhau Python SDK
This is the official Python SDK for Bacalhau, named bacalhau-sdk.
The Bacalhau SDK changed with Bacalhau v.1.4.0 and has added/changed functionality!
Introduction
It is a high-level SDK that ships the client-side logic (e.g. signing requests) needed to query the endpoints. Please take a look at the examples for snippets to create, list and inspect jobs. Under the hood, this SDK uses bacalhau-apiclient
(autogenerated via Swagger/OpenAPI) to interact with the API.
Please make sure to use this SDK library in your Python projects, instead of the lower level bacalhau-apiclient
. The latter is listed as a dependency of this SDK and will be installed automatically when you follow the installation instructions below.
Features
List, create and inspect Bacalhau jobs using Python objects
Use the production network, or set the following environment variables to target any Bacalhau network out there:
BACALHAU_API_HOST
BACALHAU_API_PORT
Generate a key pair used to sign requests stored in the path specified by the
BACALHAU_DIR
env var (default:~/.bacalhau
)
Install
Initialize
Likewise the Bacalhau CLI, this SDK uses a key pair to be stored in BACALHAU_DIR
used for signing requests. If a key pair is not found there, it will create one for you.
Example Use
Let's submit a Hello World job and then fetch its output data's CID. We start by importing this sdk, namely bacalhau_sdk
, used to create and submit a job create request. Then we import bacalhau_apiclient
(installed automatically with this sdk), it provides various object models that compose a job create request. These are used to populate a simple python dictionary that will be passed over to the submit
util method.
You have to set your API keys for the requestor node in the Environment variables first! These are stored as
The script above prints the following object, the job.metadata.id
value is our newly created job id!
We can then use the results
method to fetch, among other fields, the output data's CID. Please extract your own job_id
from the above output and hand it over to the results
function.
The line above prints the following dictionary:
Congrats, that was a good start! Please find more code snippets in the examples folder.
When there wasn't some config specs specified, you may get messages about the config debugger working on them. This can look as the following:
Available Functions
Function | Description | Input |
---|---|---|
put | A request to put a job to bacalhau network. It encapsulates the job model. Once the job is successful put on bacalhau network, this returns the job details. | PutJobRequest |
stop | Stops a certain job and takes optionally a reason why it was stopped. | job_id (str), reason (str=None) |
executions | Gets Job Executions with the given parameters. Note that only job_id is required. | job_id (str), namespace (str=""), next_token (str =""), limit (int = 5), reverse (bool = False), order_by (str = "") |
results | Get the results of the specified job_id. | job_id (str) |
get | Gets Details/Specs of a Job by job_id and returns the job details. | job_id (str), include (str = ""), limit (int = 10) |
history | Get History of a Job by job_id and return it. | job_id (str), event_type (str = "execution"), node_id (str = ""), execution_id (str = "") |
list | Fetches and returns a list of all the Jobs, which abide the constraints given. | limit (int = 5), next_token (str = ""), order_by (str="created_at"), reverse (bool = False) |
Devstack
You can set the environment variables BACALHAU_API_HOST
and BACALHAU_API_PORT
to point this SDK to your Bacalhau API local devstack.
Developers guide
We use Poetry to manage this package, take a look at their official docs to install it. Note, all targets in the Makefile use poetry as well!
To develop this SDK locally, create a dedicated poetry virtual environment and install the root package (i.e. bacalhau_sdk
) and its dependencies:
This outputs the following:
Note the line above installs the root package (i.e. bacalhau_sdk
) in editable mode, that is, any change to its source code is reflected immediately without the need for re-packaging and re-installing it. Easy-peasy!
Then install the pre-commit hooks and test it:
Last updated