I am downloading some tables from Bing using the bulk service and want to limit the amount of data according to time. In my download paramters I am using report_time_period = ['Yesterday']
but keep getting an error TypeError: __init__() got an unexpected keyword argument 'report_time_period'
here are my other parameters that seem to be working:
download_parameters = DownloadParameters(
data_scope=['EntityData'],
download_entities= ['Keywords'],
report_time_period = ['Yesterday'], #error
file_type=REPORT_FILE_FORMAT,
last_sync_time_in_utc=None,
result_file_directory = FILE_DIRECTORY,
result_file_name = DOWNLOAD_FILE_NAME,
overwrite_result_file = True,
timeout_in_milliseconds=3600000
)