MilanM's picture
Update baked_in_credentials/creds.py
c729bdb verified
raw
history blame
239 Bytes
import os
credentials = {
"api_key": os.environ.get("WX_APIKEY"),
"project_id": os.environ.get("WX_PROJECT_ID"),
"space_id": os.environ.get("WX_SPACE_ID"),
"region": os.environ.get("WX_REGION") or "EU"
}