Crates.io | domo |
lib.rs | domo |
version | 0.3.2 |
source | src |
created_at | 2019-09-17 23:29:08.871961 |
updated_at | 2021-03-18 04:18:57.420505 |
description | The Domo Rust SDK wrapping our APIs. Also includes a CLI application. |
homepage | https://github.com/domoinc/domo-rust-sdk |
repository | https://github.com/domoinc/domo-rust-sdk |
max_upload_size | |
id | 165563 |
size | 222,018 |
Introducing the best Domo SDK. We are happy to help integrate your rust code and processes into Domo. Welcome to the Rust Domo SDK. This project aims to help developers build great Rust solutions for Domo.
This project contains a binary cli application in additon to a library.
Domo offers a public API to Domo users that want to develop solutions against their instance.
export DOMO_API_HOST=https://api.domo.com
export DOMO_API_CLIENT_ID=your-client-id-here
export DOMO_API_CLIENT_SECRET=your-client-secret-here
You can pull in the library and use the calls directly with your own code
Create the client
let domo = Domo::new(&app.host, &app.client_id, &app.client_secret);
Note: Please do not check your credentials into your code. We recommend using environment variables or other config that is not in your repo.
Use methods on the provided client
let r = domo.list_datasets(limit, offset).await.unwrap();
Run the command to get full help.
domo -h
Currently offers wrappers around the api via sub-commands
domo dataset list
domo stream retrieve 4
domo workflow list
domo user list-all
If you update or create a new object, it will open up an editor so you can modify the object in yaml format. You can use the env flag DOMO_EDITOR to override which editor is used:
DOMO_EDITOR=nano dataset create