Amazon Textract boto3 response changed when using in lambda

0

Our application is looking for response from textract to be in a certain format all the time.

Wanted to know how to call textract from lambda(python) by giving a specific version ? Our script is always calling the latest version of textract.

Can you please point me to code snippet or an example on how we could call by giving version number ?

Thanks.

已提问 2 年前428 查看次数
2 回答
0

Hi, thank you for using Textract. Textract did update the table model to support merged_cells and table_headers. https://aws.amazon.com/about-aws/whats-new/2022/03/amazon-textract-updates-tables-check-detection/

The update adds a new BlockType called "MERGED_CELLS" and Relationships Type "MERGED_CELL" and an EntityType "COLUMN_HEADER". If you don't need those, you can ignore them.

Outside of those additions the response is the same as the "older" one with all CELLs of a TABLE being the CHILD Relationship. See: https://docs.aws.amazon.com/textract/latest/dg/how-it-works-tables.html

I recommend using https://pypi.org/project/amazon-textract-response-parser/ for parsing the response in Python.

AWS
已回答 2 年前
0

There is no difference in response format when calling Textract from Lambda vs. locally or from an EC2 instance. BUT Lambda does not always include the latest SDK version.

Check https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html for more information. You may have to install the same boto3 version (here is an example: https://aws.amazon.com/premiumsupport/knowledge-center/lambda-python-runtime-errors/).

I usually use containers with Lambda now (generated with SAM or CDK) where I have full control.

AWS
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则