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 年前檢視次數 412 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南