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 = "55f2d283-c09e-4fef-a872-dcae99410846"
# 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)
figure2_raw_zt_histogram
ZT values from Itani et al. cropped to <5 ZT.
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...