Go SDK
Our clarify-go
package is an easy way to get started with the Clarify using the Go programming language. You can currently only use it from writing data, but a more advanced version is expected soon.
The pacakge can be installed with:
go get "github.com/clarify/clarify-go@latest"
And imported as:
import (
// Main package containing client intializatation:
clarify "github.com/clarify/clarify-go"
// Package for composing and querying data frames.
"github.com/clarify/data"
// Package for composing and querting resource views.
"github.com/clarify/resources"
// Low-level pacakge for performing JSON RPC requests (less relevant).
"github.com/clarify/jsonrpc"
)
For more information, check out it's documentation or GitHub repostory.