Version
parsr-client==3.2.3
Issue
the returned dictionary when using 'wait_till_finished=True' was:
return {
'file': file,
'config': config,
'status_code': r.status_code,
'server_response': r.text
}
It should be:
return {
'file': file_path,
'config': config_path,
'status_code': r.status_code,
'server_response': r.text
}
As the function takes 'file_path' and 'config_path' as arguments.
Version
parsr-client==3.2.3
Issue
the returned dictionary when using 'wait_till_finished=True' was:
It should be:
As the function takes 'file_path' and 'config_path' as arguments.