I'd suggest you look into querying your Quickbase data directly utilizing the API. If you're working with Python, you can use the REST API here:
https://developer.quickbase.com/operation/runQuery Select the Code Samples tab and select Python from the drop-down and you'll get this code as an example query:
import json
import requests
headers = {
'QB-Realm-Hostname': '{QB-Realm-Hostname}',
'User-Agent': '{User-Agent}',
'Authorization': '{Authorization}'
}
body = {}
r = requests.post(
'https://api.quickbase.com/v1/records/query',
headers = headers,
json = body
)
print(json.dumps(r.json(),indent=4))
------------------------------
Blake Harrison
bharrison@datablender.io
DataBlender - Quickbase Solution Provider
Atlanta GA
404.800.1702 /
http://datablender.io/------------------------------