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"))
file_id = "22bf49ec-4b8d-4089-b4e9-35f6e32378e2"
# Retrieve file metadata and signed URL
f = ouro.files.retrieve(file_id)
print(f.name, f.visibility)
data = f.read_data() # fetches signed URL
print(data.url)
figure1_compression_demo
ZT distribution from Itani et. al. dataset.
Exploring thermoelectric dataset from Itani et al. 2024 (Pt. 1)
postIn this post we'll be exploring the dataset posted by last month. This is a bunch of thermoelectric data mined by LLMs from journal publications. It contains things like material names, crystal struc
4mo
1 reference
Loading compatible actions...
Loading comments...