9mo
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 = "cf06ccb2-fa61-471d-8713-d39b5800bdb0"
# 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)
In silico superconductor discovery
Visualizing predictions for a novel material in the Ba-Cu-F-Sr-O family, estimated to have at Tc of 113 K.
In a simplified version of the full end-to-end pipeline, we attempt to use MatterGen, recently released by Microsoft, to generate novel materials and test them for superconductivity. Paper and repo
9mo
1 reference
Loading compatible actions...
Loading comments...