Discussions
Veraset Bulk API download issue (only) on 2025-06 data
Hi!
Thanks for adding the data between June 2025 and September 2025 to the Veraset dataset. However, I ran into some issues when trying to accessing the data with Bulk API for June 2025 data (but not for any other month).
Specifically, when I run this:
files_df = ddp.get_file_list(apikey, pp_visits,
start_date = '2025-06-01',
end_date = '2025-06-01',
print_info = True);
I get this error message:
TypeError Traceback (most recent call last)
Cell In[8], line 1
----> 1 files_df = ddp.get_file_list(apikey, pp_visits,
2 start_date = '2025-06-01',
3 end_date = '2025-06-01',
4 print_info = True)
File /opt/anaconda3/lib/python3.13/site-packages/deweydatapy/download.py:240, in get_file_list(apikey, product_path, start_page, end_page, start_date, end_date, meta, print_info)
223 def get_file_list(apikey, product_path, start_page=1, end_page=float('inf'),
224 start_date=None, end_date=None,
225 meta=None,
226 print_info=True):
227 """
228 Collects the file list information from data server.
229
(...)
237 :return: A DataFrame object contains files information.
238 """
--> 240 files_df, selection_meta, pages_meta = get_file_list_full(apikey, product_path,
241 start_page, end_page,
242 start_date, end_date,
243 meta,
244 print_info)
246 return files_df
...
185 })], ignore_index=True)
187 page_files_df = pd.DataFrame(res_json['download_links'])
189 page_files_df.insert(loc=0, column='page', value=res_json['page'])
TypeError: unsupported operand type(s) for /: 'NoneType' and 'int'
Could you please look into the dataset? Thank you!