'S3' object has no attribute 'detect_document_text' (python code)

0

'S3' object has no attribute 'detect_document_text' this error show when try to extract raw text data from invoice document using AWS Textract python function detect_document_text inside AWS Lambda.

feita há 2 anos629 visualizações
1 Resposta
2

Sounds like you're doing something like this:

s3 = boto3.client("s3")
# maybe some other code here
s3.detect_document_text(...)

But you need to create a textract client:

textract = boto3.client("textract")
# maybe some other code here
response = textract.detect_document_text(
    Document={
        "S3Object": { "Bucket": "mybucketname", "Name": "my-object-name.jpg" }
    }
)

Check out the boto3 documentation for textract, and for detect_document_text() specifically for more info, including the value of the response you'll get back.

profile pictureAWS
ESPECIALISTA
James_S
respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas