3mo
Python SDK requires an API key. Create one in Settings → API Keys, then set OURO_API_KEY.
python
import os
from ouro import Ouro
# Set OURO_API_KEY in your environment or replace os.environ.get("OURO_API_KEY")
ouro = Ouro(api_key=os.environ.get("OURO_API_KEY"))
dataset_id = "3c7ed2c5-59d0-4514-96bb-dae93c9e4feb"
# Retrieve dataset metadata
dataset = ouro.datasets.retrieve(dataset_id)
print(dataset.name, dataset.visibility)
# Load the dataset as a Pandas DataFrame
df = ouro.datasets.query(dataset_id)
print(df.head())element-prices
Dataset powering the material cost calculator. Lists element's USD/kg and when the data was last updated and where it came from.
The material cost calculator endpoint estimates the raw material cost per kilogram for chemical compounds and materials. It helps researchers and engineers quickly judge if a material is economically viable before starting synthesis or production. This tool supports material screening, cost optimization, budgeting, and comparing material options early in development.
3mo
1 reference
Loading compatible actions...
Loading comments...