SDK Development

Rust

https://github.com/apache/horaedb-client-rs

First install cargo with

1
curl https://sh.rustup.rs -sSf | sh

Then build with

1
cargo build

Python

https://github.com/apache/horaedb-client-py

Requirements

  • python 3.7+

The Python SDK rely on Rust SDK, so cargo is also required, then install build tool maturin:

1
pip install maturin

Then build Python SDK with this:

1
maturin build

Go

https://github.com/apache/horaedb-client-go

1
go build ./...

Java

https://github.com/apache/horaedb-client-java

Requirements

  • java 1.8
  • maven 3.6.3+
1
mvn clean install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
Last modified November 26, 2024: chore: polish sdk dev (#160) (09c72af)