-
Notifications
You must be signed in to change notification settings - Fork 3
File Downloading
Robert S.W. Carroll edited this page Apr 9, 2022
·
2 revisions
The .download_file() client method can be used to download files from QuickBase. It takes the following parameters:
table: str,
rid: int,
fid: int,
version: intThe download_file() method returns a QBFile() object. At this point, you can call the .save() method on the QBFile() object. The .save() method takes one argument, path='path/to/save.pdf.
The workflow for downloading files from QB might look something like this:
f = qbc.download_file(table='xyz8923z', rid=2, fid=36, version=66)
f.save('temp/test.pdf')