DocuProx SDKs
Official SDKs for Python and Node.js. Build powerful document processing applications with our easy-to-use SDK packages that enable automated document extraction and processing.
Python SDK
Official Python package for DocuProx. Simple API for processing files and base64 data using document templates.
pip install docuprox
Node.js SDK
Official Node.js package for DocuProx. Process files or base64 data with a promise-based API.
npm install docuprox
Quick Start Examples
Python
from docuprox import Docuprox
# Initialize client
client = Docuprox(api_key="your_api_key")
# Process a file
result = client.processfile("invoice.pdf", "your-template-uuid")
print(result)
Node.js
const Docuprox = require("docuprox");
const client = new Docuprox();
(async () => {
const result = await client.processFile(
"invoice.pdf",
"your-template-uuid"
);
console.log(result);
})();
SDK Features
Easy Integration
Simple APIs to quickly integrate document processing into any application.
Multiple Input Types
Process local files directly or send base64 encoded data to the API.
Async Support
Node.js SDK provides promise-based async operations for non-blocking workflows.
Environment Config
Configure API URL and API keys easily using environment variables.
Reliable Processing
Built for stable and secure communication with the DocuProx API.
Clear Documentation
Step-by-step guides and examples to get started quickly.