如何使用脚本bash中的文档转换服务转换多个文档?

时间:2015-11-06 01:28:58

标签: ibm-watson document-conversion

如何使用Document Conversion服务转换多个文档。

我想要使用convert_document API方法转换50到100个MS Word和PDF文档?

例如,您可以提供多个这样的.pdf或* .doc文件吗?:

curl -u "username":"password" -X POST
-F "config={\"conversion_target\":\"ANSWER_UNITS\"};type=application/json" 
-F "file=@\*.doc;type=application/msword"
 "https://gateway.watsonplatform.net/document-conversion-experimental/api/v1/convert_document"

不幸的是,这给出了错误:curl:(26)无法打开文件“* .doc”。 我也试过“file = @ file1.doc,file2.doc,file3.doc”,但也会出错。

1 个答案:

答案 0 :(得分:2)

该服务一次只接受一个文件,但您可以多次调用它。

#!/bin/bash
USERNAME="<service-username>"
PASSWORD="<service-password>"
URL="https://gateway.watsonplatform.net/document-conversion-experimental/api/v1/convert_document"
DIRECTORY="/path/to/documents"
for doc in *.doc
do
  echo "Converting - $doc"
  curl -u "$USERNAME:$PASSWORD" \
  -F 'config={"conversion_target":"ANSWER_UNITS"};type=application/json' \
  -F "file=@$doc;type=application/pdf" "$URL"
done

文档转换documentationAPI Reference