'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.

demandé il y a 2 ans628 vues
1 réponse
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
EXPERT
James_S
répondu il y a 2 ans

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions