在Python的'parser-client'库中,`parsr.send_document()`函数需要进行一些更新,

o75abkj4  于 2个月前  发布在  Python
关注(0)|答案(1)|浏览(49)

版本

parsr-client==3.2.3

问题

当使用'wait_till_finished=True'时,返回的字典是:

return {
  'file': file,
  'config': config,
  'status_code': r.status_code,
  'server_response': r.text
}

它应该是:

return {
  'file': file_path,
  'config': config_path,
  'status_code': r.status_code,
  'server_response': r.text
}

因为函数接受'file_path'和'config_path'作为参数。

ax6ht2ek

ax6ht2ek1#

我刚遇到了同样的问题,已经在#490中修复了。我们希望将这些更改推送到PyPi。这是否可以轻松完成?

相关问题