I have some large netcdf4 files in my personal Dropbox on the order of about 12GB. I'd like to use the Python SDK to read these files directly into my session without having to download them locally but am not sure how to use the Response object that gets returned by files_download()? I work with .nc files primarily with the `xarray` package, so was wondering what the best way to get from the Response object specified by my path to a xarray object would be. The code I currently have is below.
import dropbox
import netCDF4
import xarray as xr
access_token = XXXXXX
dbx = dropbox.Dropbox(access_token)
db_path = "/MAXT.nc"
metadata, f = dbx.files_download(db_path)