Skip to main content

Extract structured information from images, tables, and text in PDF document.

Project description

pdf-decomposer

For the convenience of analysis, sometimes it is necessary to extract the content from PDF document. This project uses local tools to extract images, tables, and text from PDF file.

Install

Install appropriate version of PaddlePaddle and PyTorch. Here is an example using CUDA 11.8.

sudo apt install tesseract-ocr
sudo apt install tesseract-ocr-chi-sim

pip install paddlepaddle-gpu==2.5.2 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install torch torchvision torchaudio -i https://download.pytorch.org/whl/cu118
pip install 'git+https://github.com/facebookresearch/detectron2.git'

Install from source code.

pip install .

or

pip install pdf-decomposer

If you are unable to download the layout-parser model automatically, please download it yourself based on the link provided in the error message, and then specify the local config_path and model_path.

Solution based on PaddleOCR

Use layout analysis and table structure model in PaddleOCR ppstructure to recognize layout elements and reconstruct tables. Then use PyMuPDF to parse text and organize paragraph.

import pdf_decomposer

decomposer = pdf_decomposer.PaddlePDFDecomposer()
decomposer(example_file, output_dir)

Alternative local solution

Compared to the Paddle solution, use layout-parser to conduct layout analysis, and then search adaptive thresholds with genetic algorithm to reconstruct tables.

import pdf_decomposer

decomposer = pdf_decomposer.OpenPDFDecomposer()
decomposer(example_file, output_dir)

Solution based on Adobe service

Call Acrobat PDF Services API to extract various elements from PDF files. Please apply for the API key here. Make sure to set api key before running.

export ADOBE_CLIENT_ID=<YOUR CLIENT ID>
export ADOBE_CLIENT_SECRET=<YOUR CLIENT SECRET>
import pdf_decomposer

decomposer = pdf_decomposer.AdobePDFDecomposer()
decomposer(example_file, output_dir)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pdf_decomposer-0.2.1.tar.gz (22.9 kB view hashes)

Uploaded Source

Built Distribution

pdf_decomposer-0.2.1-py2.py3-none-any.whl (24.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page