Learn how to interact with this file using the Ouro SDK or REST API.
API access requires an API key. Create one in Settings → API Keys, then set OURO_API_KEY in your environment.
Retrieve file
Get file metadata including name, visibility, description, file size, and other asset properties.
import osfrom 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 = "af4ffe24-84af-4d79-86c0-d78e598b9309"# Retrieve file metadatafile = ouro.files.retrieve(file_id)print(file.name, file.visibility)print(file.metadata)
Read file data
Get a URL to download or embed the file. For private assets, the URL is temporary and will expire after 1 hour.
# Get signed URL to download the filefile_data = file.read_data()print(file_data.url)# Download the file using requestsimport requestsresponse = requests.get(file_data.url)with open('downloaded_file', 'wb') as output_file: output_file.write(response.content)
Update file
Update file metadata (name, description, visibility, etc.) and optionally replace the file data with a new file. Requires write or admin permission.
# Update file metadataupdated = ouro.files.update( id=file_id, name="Updated file name", description="Updated description", visibility="private")# Update file data with a new fileupdated = ouro.files.update( id=file_id, file_path="./new_file.txt")
Delete file
Permanently delete a file from the platform. Requires admin permission. This action cannot be undone.
# Delete a file (requires admin permission)ouro.files.delete(id=file_id)
1 download
1.37 KB
.cif file
Attribution
Relax a crystal structure
file→file.cif
6.5k uses
Calculate energy above the convex hull
file→file.html
6.4k uses
Predict Curie temperature from a CIF
file.cif→JSON
6.0k uses
Estimate magnetic moments and Ms from a CIF
file.cif→JSON
4.4k uses
Calculate magnetic anisotropy energy (MAE)
file.cif→JSON
3.3k uses
Predict a crystal property with ALIGNN
file.cif→JSON
1.9k uses
Estimate raw material cost per kg
file.cif→JSON
1.6k uses
Calculate phonon dispersion and band structure
file→file.png
598 uses
Expand a crystal structure into a supercell
file.cif→file.cif
140 uses
Extract crystal structure metadata
file.cif→JSON
123 uses
Estimate ZT and key thermoelectric properties
file.cif→JSON
88 uses
Structure relaxation via NequIP-OAM-XL
file.cif→file.cif
32 uses
Relax a crystal structure and publish results
file→post
31 uses
Relax a crystal structure with animation
file→file.mp4
28 uses
Predict Seebeck coefficient and band gap
file.cif→JSON
24 uses
Create an interstitially doped structure
file→file.cif
22 uses
Magnetic moment & Ms for ligand-bridged magnets (oxides, nitrides, M–X–M)
Long-form calculated properties extracted from successful route actions that used each CIF as an input. Columns fileid / actionid / route_id are Ouro references.