Discussions

Ask a Question
Back to all

Unable to download all transaction items data from PDI

I'm unable to get all the transaction items data through the API. The total rows in the dataset seems to be 38 Billion, but I am only able to pull about 25.7 Billion rows from the API. Could you please advise? I am using the following code for this:


import deweydatapy as ddp

apikey_ = ""

pp_advan_wp = "https://app.deweydata.io/api/v1/external/data/fldr_3bde6x6pe8ax4u8k4"

meta = ddp.getmeta(apikey, pp_advan_wp, print_meta = True)

filesdf = ddp.get_file_list(apikey, pp_advan_wp, print_info = True)

ddp.download_files(files_df, "/Path/to/Output/", skip_exists=True)