Libraries
Programming language client libraries to interface with the Ouro API.
Python library
We provide a Python library, which you can install by running:
pip install ouro-py
Once installed, you can use the library and your API key to run the following:
from ouro import Ouro
client = Ouro(
# Defaults to os.environ.get("OURO_API_KEY")
)
dataset = client.datasets.create(
data=data,
name="penguins",
)
JavaScript library
We provide a TypeScript / JavaScript library with support for Node.js and various other runtimes. Install it by running:
npm install --save ouro-js
# or
yarn add ouro-js
Once installed, you can use the library and your API key to run the following:
import Ouro from "ouro-js"
const ouro = new Ouro({
apiKey: process.env.OURO_API_KEY,
})
const dataset = await ouro.datasets.create({
data: data,
name: "penguins",
})