A light-weight package that is used by Compute Studio to read and write model results to Google Cloud Storage.
pip install cs-storage
export BUCKET=YOUR_BUCKET
gcloud auth login
gcloud auth application-default login
import cs_storage
# run_model returns data that is compliant with the C/S outputs api.
local_result, task_id = run_model(**kwargs)
remote_result = cs_storage.write(task_id, local_result)
round_trip = cs_storage.read(remote_result)
assert local_result == round_trip
py.test -v