5mo
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"))
dataset_id = "01973888-6d0a-7fef-a00d-b753d223f9dd"
# Retrieve dataset metadata
dataset = ouro.datasets.retrieve(dataset_id)
print(dataset.name, dataset.visibility)
# Load the dataset as a Pandas DataFrame
df = ouro.datasets.query(dataset_id)
print(df.head())
gold-price-forecast-june-2025
Forecasts for Gold Price with 12-period horizon
Gold Price Forecast Report (June 2025)
postThis report offers an in-depth analysis of gold price movements with a 12 month forecast, focusing on the current state, projected trends, and implications for stakeholders.
5mo
1 reference
Loading compatible actions...
Loading comments...