10mo
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 = "5df0030b-bf3f-4f3c-bff2-9f0fb6db5b85"
# 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)
Evidence for metastable photo-induced superconductivity in K3C60
Authors make use of a new optical device to drive metallic K3C60 with mid-infrared pulses of tunable duration, ranging between one picosecond and one nanosecond. The same superconducting-like optical properties observed over short time windows for femtosecond excitation are shown here to become metastable under sustained optical driving, with lifetimes in excess of ten nanoseconds.
is where light is used to induce superconducting-like states in materials. If we can learn more about the mechanisms behind this phenomenon, we can more intentionally d
10mo
1 reference
Loading compatible actions...
Loading comments...