Document page extraction tool powered by DeepSeek-OCR
Project description
doc-page-extractor
Document page extraction tool powered by DeepSeek-OCR.
Installation
⚠️ Important: This package requires PyTorch with CUDA support (GPU Required). PyTorch is NOT automatically installed - you must install it manually first.
Step 1: Install PyTorch with CUDA
Choose the command that matches your CUDA version:
# For CUDA 12.1 (recommended for most users)
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
# For CUDA 11.8
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu118
# For CUDA 12.6
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu126
💡 Don't know your CUDA version? Run
nvidia-smito check, or just try CUDA 12.1 (works with most recent drivers).
Step 2: Install doc-page-extractor
pip install doc-page-extractor
Verify Installation
Check if everything is working:
python -c "import doc_page_extractor; import torch; print('✓ Installation successful!'); print('✓ CUDA available:', torch.cuda.is_available())"
Expected output:
✓ Installation successful!
✓ CUDA available: True
If CUDA shows False, see the troubleshooting section below.
Usage
from doc_page_extractor import PageExtractor
# Your code here
Troubleshooting
"PyTorch is required but not installed!"
Install PyTorch first:
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
"CUDA is not available!"
Check your GPU driver:
nvidia-smi
If the command fails, you need to install NVIDIA drivers:
- Download from: https://www.nvidia.com/download/index.aspx
If it succeeds, you might have CPU-only PyTorch. Reinstall with CUDA:
pip uninstall torch torchvision
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
Requirements
- Python >= 3.10, < 3.14
- NVIDIA GPU with CUDA 11.8 or 12.1 support (Required)
- Sufficient GPU memory (recommended: 4GB+ VRAM)
Dependencies & Licenses
This project is licensed under the MIT License. It depends on the DeepSeek-OCR model which uses easydict (LGPLv3) for configuration management.
Development
For contributors and developers, see Development Guide for:
- Running tests
- Running lint checks
- Building the package
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file doc_page_extractor-1.0.10.tar.gz.
File metadata
- Download URL: doc_page_extractor-1.0.10.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.15 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63f1aab3a2127f7ca4074db31de85ada87c49e47a4b4477dd798467816f38366
|
|
| MD5 |
08146153ba78824109bc5c8f204dc7e6
|
|
| BLAKE2b-256 |
330ff4d9e87e7298b10c8ceeef498c5500a360aa3cf848fd6dcabfa713e84425
|
File details
Details for the file doc_page_extractor-1.0.10-py3-none-any.whl.
File metadata
- Download URL: doc_page_extractor-1.0.10-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.15 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad322309a3072bd44b4150948080f9e254b6a6c4dbe1da9322cb32cbc4def192
|
|
| MD5 |
aba65a6e1ddb9bfcb76f8da895bd4812
|
|
| BLAKE2b-256 |
e9dd0bdd5e6bc1e438b930881edf14620fbb09168fcf9c09e1d77aef7d9cad67
|