Libraries
Last updated 15d ago
Programming language client libraries to interface with the Ouro API.
Programming language client libraries to interface with the Ouro API.
Learn how to use the 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:
import os
from ouro import Ouro
ouro = Ouro(api_key=os.environ.get("OURO_API_KEY"))
dataset = ouro.datasets.create(
data=data,
name="penguins",
visibility="public",
)
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
The JS library is still under heavy development. We recommend using the Python library if possible. Otherwise, using the web API is the best way to get started from JavaScript.
For now, the JavaScript library is used internally by the Ouro web app. We're working on making it more stable and usable for external use.