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 = "6e24000e-68f5-480b-b3ee-c55aaa652ebc"
# 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)Thermoelectric figure of merit for p- and n-doped SnS.
Figure from https://doi.org/10.1016/j.mtcomm.2020.101167
Let's crack on. We are exploring an LLM mined dataset of ~several thousand thermoelectric materials. We have been looking at the distribution of the figure of merit of the materials and taking a clos
3mo
1 reference
Loading compatible actions...
Loading comments...