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 = "a4d0005d-8442-4dfd-9f14-e9fd5c6e14d1"
# 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)
Quote from Isotta et al. 2023 https://doi.org/10.1016/j.mtphys.2023.100967
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...