amazon-textract Questions
6
Solved
I want to use this amazon table textract script
The problem I encounter is that I don't have any clue what is trp module and how I can install it.
I tried
pip install trp
But when I try to run...
Suicidal asked 9/8, 2019 at 17:17
5
Solved
I have a .Net core client application using amazon Textract with S3,SNS and SQS as per the AWS Document , Detecting and Analyzing Text in Multipage Documents(https://docs.aws.amazon.com/textract/la...
Egyptian asked 30/11, 2019 at 5:52
8
I already can use the textract but with JPEG files. I would like to use it with PDF files.
I have the code bellow:
import boto3
# Document
documentName = "Path to document in JPEG"
# Read doc...
Jaclynjaco asked 25/11, 2019 at 18:46
2
When i try to parse pdf file accessed via amazon s3, it gives me an error, Request has unsupported document format.
i am using Amazon textract with boto3. When i try to parse pdf file accessed via...
Casemate asked 18/7, 2019 at 7:8
2
I want to use textract (via aws cli) to extract tables from a pdf file (located in an s3 location) and export it into a csv file. I have tried writing a .py script but am struggling to read from th...
Pocked asked 13/10, 2020 at 17:18
2
Solved
I'm using boto3 (aws sdk for python) to analyze a document (a pdf) to get the form key:value pairs.
import boto3
def process_text_analysis(bucket, document):
# Get the document from S3
s3_conne...
Epistle asked 3/3, 2020 at 6:34
5
I am working with AWS Textract and I want to analyze a multipage document, therefore I have to use the async options, so I first used startDocumentAnalysisfunction and I got a JobId as the return, ...
Carnahan asked 23/6, 2019 at 23:53
2
I found article below to do in python.
https://docs.aws.amazon.com/textract/latest/dg/examples-export-table-csv.html
also I used article below to extract text.
https://docs.aws.amazon.com/textra...
Collete asked 7/4, 2020 at 18:30
1
So I am trying to use Amazon Textract to read in multiple pdf files, with multiple pages using the StartDocumentTextDetection method as follows:
client = boto3.client('textract')
textract_bucket = ...
Hartwell asked 31/8, 2020 at 15:27
1
I want to use Textract OCR service for reading text from pdf file. I have a problem with that because I want to do it locally, without S3 bucket. I tested it for image files and it works good, but ...
Copestone asked 8/10, 2020 at 10:52
1
Solved
I want to extract text from images using Python. (Tessaract lib does not work for me because it requires installation).
I have found boto3 lib and Textract, but I'm having trouble working with it. ...
Palmitin asked 24/9, 2020 at 10:57
1
Solved
I am using AWS Textract in a Java Spring boot project. I have set up AWS CLI and have the SDK as a maven dependency.
I have written Java code, converted from C# in order to extract the Key and Valu...
Fencer asked 21/6, 2020 at 13:24
2
Solved
How do I decide when to use Amazon Textract vs Amazon Rekognition's TextDetect method?
My usecase is click picture from mobile and convert image data into text and store into AWS RDS.
https://aw...
Padua asked 6/5, 2019 at 15:34
1
© 2022 - 2024 — McMap. All rights reserved.