domo = Domo(client_id, client_secret,api_host=api_host)
I want to add an additional argument here that is updatemethod=Append. I am not sure what the correct syntax for this would be.
For extra context,
I am currently reading files into python and essentially once I read these files in, I want to combine them and then upload them to Domo. The issue is that in total these files have 8,000,000 rows and I am unable to upload them all at once. I was wondering if I could upload one file at a time to the same dataset ID and append them to the existing data.
Can someone please help me with this?