gpt4 book ai didi

amazon-web-services - 如何将 Amazon Textract 用于 PDF 文件

转载 作者:行者123 更新时间:2023-12-03 16:03:25 25 4
gpt4 key购买 nike

我已经可以使用文本提取但使用 JPEG 文件。我想将它与 PDF 文件一起使用。

我有以下代码:

import boto3

# Document
documentName = "Path to document in JPEG"

# Read document content
with open(documentName, 'rb') as document:
imageBytes = bytearray(document.read())

# Amazon Textract client
textract = boto3.client('textract')
documentText = ""

# Call Amazon Textract
response = textract.detect_document_text(Document={'Bytes': imageBytes})

#print(response)

# Print detected text
for item in response["Blocks"]:
if item["BlockType"] == "LINE":
documentText = documentText + item["Text"]

# print('\033[94m' + item["Text"] + '\033[0m')
# # print(item["Text"])

# removing the quotation marks from the string, otherwise would cause problems to A.I
documentText = documentText.replace(chr(34), '')
documentText = documentText.replace(chr(39), '')
print(documentText)

正如我所说,它工作正常。但我想使用它传递一个 PDF 文件,就像在 Web 应用程序中一样进行测试。

我知道可以在 python 中将 PDF 转换为 JPEG,但使用 PDF 会很好。我阅读了文档并没有找到答案。

我怎样才能做到这一点?

编辑 1:我忘了提到我不打算使用 de s3 存储桶。我想在脚本中直接传递 PDF,而不必将其上传到 s3 存储桶中。

最佳答案

正如@syumaK 提到的,您需要先将 pdf 上传到 S3。但是,这样做可能比您想象的更便宜、更容易:

  • 在控制台中创建新的 S3 存储桶并记下存储桶名称,
    然后
  • import random
    import boto3

    bucket = 'YOUR_BUCKETNAME'
    path = 'THE_PATH_FROM_WHERE_YOU_UPLOAD_INTO_S3'
    filename = 'YOUR_FILENAME'

    s3 = boto3.resource('s3')
    print(f'uploading {filename} to s3')
    s3.Bucket(bucket).upload_file(path+filename, filename)

    client = boto3.client('textract')
    response = client.start_document_text_detection(
    DocumentLocation={'S3Object': {'Bucket': bucket, 'Name': filename} },
    ClientRequestToken=random.randint(1,1e10))

    response = client.get_document_text_detection(JobId=jobid)

    可能需要 5-50 秒,直到对 get_document_text_detection(...) 的调用返回结果。之前,它会说它仍在处理中。
    根据我的理解,对于每个 token ,将执行一次付费 API 调用 - 如果 token 过去出现过,则会检索过去的调用。
    编辑:
    我忘了提及,如果文档很大,则有一个复杂性,在这种情况下,结果可能需要从多个“页面”拼接在一起。您需要添加的代码类型是

    ...
    pages = [response]
    while nextToken := response.get('NextToken'):
    response = client.get_document_text_detection(JobId=jobid, NextToken=nextToken)
    pages.append(response)

    关于amazon-web-services - 如何将 Amazon Textract 用于 PDF 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59038306/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com