mirror of
https://github.com/opendatalab/MinerU.git
synced 2026-03-27 11:08:32 +07:00
56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
import io
|
|
import json
|
|
import os
|
|
from magic_pdf.libs.commons import fitz
|
|
|
|
from magic_pdf.spark.s3 import get_s3_config, get_s3_client
|
|
from magic_pdf.libs.commons import join_path, json_dump_path, read_file, parse_bucket_key
|
|
from loguru import logger
|
|
|
|
test_pdf_dir_path = "s3://llm-pdf-text/unittest/pdf/"
|
|
|
|
|
|
def get_test_pdf_json(book_name):
|
|
json_path = join_path(json_dump_path, book_name + ".json")
|
|
s3_config = get_s3_config(json_path)
|
|
file_content = read_file(json_path, s3_config)
|
|
json_str = file_content.decode('utf-8')
|
|
json_object = json.loads(json_str)
|
|
return json_object
|
|
|
|
|
|
def read_test_file(book_name):
|
|
test_pdf_path = join_path(test_pdf_dir_path, book_name + ".pdf")
|
|
s3_config = get_s3_config(test_pdf_path)
|
|
try:
|
|
file_content = read_file(test_pdf_path, s3_config)
|
|
return file_content
|
|
except Exception as e:
|
|
if "NoSuchKey" in str(e):
|
|
logger.warning("File not found in test_pdf_path. Downloading from orig_s3_pdf_path.")
|
|
try:
|
|
json_object = get_test_pdf_json(book_name)
|
|
orig_s3_pdf_path = json_object.get('file_location')
|
|
s3_config = get_s3_config(orig_s3_pdf_path)
|
|
file_content = read_file(orig_s3_pdf_path, s3_config)
|
|
s3_client = get_s3_client(test_pdf_path)
|
|
bucket_name, bucket_key = parse_bucket_key(test_pdf_path)
|
|
file_obj = io.BytesIO(file_content)
|
|
s3_client.upload_fileobj(file_obj, bucket_name, bucket_key)
|
|
return file_content
|
|
except Exception as e:
|
|
logger.exception(e)
|
|
else:
|
|
logger.exception(e)
|
|
|
|
|
|
def get_docs_from_test_pdf(book_name):
|
|
file_content = read_test_file(book_name)
|
|
return fitz.open("pdf", file_content)
|
|
|
|
|
|
def get_test_json_data(directory_path, json_file_name):
|
|
with open(os.path.join(directory_path, json_file_name), "r", encoding='utf-8') as f:
|
|
test_data = json.load(f)
|
|
return test_data
|