Extract structured information from documents using AI
Project description
Metaminer
A tool for extracting structured information from documents using AI.
Overview
Metaminer allows you to extract structured data from various document formats (PDF, DOCX, TXT, etc.) by asking natural language questions. It uses AI to analyze documents and return structured results in CSV or JSON format.
Installation
pip install metaminer
System Requirements
Metaminer requires pandoc to be installed on your system for document processing:
- Ubuntu/Debian:
sudo apt-get install pandoc - macOS:
brew install pandoc - Windows: Download from pandoc.org
Note: Metaminer uses pandoc for most document formats and PyMuPDF specifically for PDF processing to ensure optimal text extraction.
Usage
Command Line Interface
# Basic usage
metaminer questions.txt documents/
# Process single document
metaminer questions.txt document.pdf
# Save results to file
metaminer questions.txt documents/ --output results.csv
# JSON output format
metaminer questions.txt documents/ --format json --output results.json
# Custom API endpoint
metaminer questions.txt documents/ --base-url http://localhost:8000/api/v1
Python Module
from metaminer import Inquiry, extract_metadata, Config
from metaminer import extract_text, get_supported_extensions
import pandas as pd
# From question file
inquiry = Inquiry.from_file("questions.txt")
df = inquiry.process_documents("documents/")
# Direct questions
inquiry = Inquiry(questions=["Who is the author?", "What is the publication date?"])
df = inquiry.process_documents(["doc1.pdf", "doc2.docx"])
# Single document
result = inquiry.process_document("document.pdf")
# Extract text directly
text = extract_text("document.pdf")
# Get supported file extensions
extensions = get_supported_extensions()
# Use configuration
config = Config()
print(f"Default API endpoint: {config.base_url}")
Question Formats
Text File (.txt)
One question per line:
Who is the author?
What is the publication date?
What is the main topic?
CSV File (.csv)
Structured format with optional field names and data types:
question,field_name,data_type
"Who is the author?",author,str
"What is the publication date?",pub_date,date
"How many pages?",page_count,int
Supported data types:
str(default): Textint: Integer numbersfloat: Decimal numbersbool: True/False valuesdate: Date valueslist(type): Arrays of values (e.g.,list(str),list(int))enum(val1,val2,val3): Single choice from discrete valuesmulti_enum(val1,val2,val3): Multiple choices from discrete values
Supported Document Formats
Thanks to pandoc integration and PyMuPDF, metaminer supports:
- PDF (.pdf)
- Microsoft Word (.docx, .doc)
- OpenDocument (.odt)
- Rich Text Format (.rtf)
- Plain text (.txt)
- Markdown (.md)
- HTML (.html)
- EPUB (.epub)
- LaTeX (.tex)
Configuration
API Settings
By default, metaminer connects to a local AI server at http://localhost:5001/api/v1. You can customize this using environment variables or command-line options:
Environment Variables
# API Configuration
export OPENAI_API_KEY=your-api-key
export METAMINER_BASE_URL=http://your-api-server.com/api/v1
export METAMINER_MODEL=gpt-4
export METAMINER_TIMEOUT=60
export METAMINER_MAX_RETRIES=5
# Logging Configuration
export METAMINER_LOG_LEVEL=DEBUG
Command Line
metaminer questions.txt documents/ --base-url http://your-api-server.com/api/v1
Python
from metaminer import Inquiry, Config
# Using configuration
config = Config()
inquiry = Inquiry.from_file("questions.txt", base_url="http://your-api-server.com/api/v1")
# Or set environment variables before creating Inquiry
import os
os.environ["METAMINER_BASE_URL"] = "http://your-api-server.com/api/v1"
inquiry = Inquiry.from_file("questions.txt")
Configuration Defaults
- Base URL:
http://localhost:5001/api/v1 - Model:
gpt-3.5-turbo - Timeout: 30 seconds
- Max Retries: 3
- Log Level: INFO
- Max File Size: 50MB
Output Format
Results include the extracted information plus metadata:
author,pub_date,page_count,_document_path,_document_name
"John Doe","2023-01-15",25,"/path/to/doc1.pdf","doc1.pdf"
"Jane Smith","2023-02-20",18,"/path/to/doc2.pdf","doc2.pdf"
Examples
Research Paper Analysis
# questions.txt
Who are the authors?
What is the title?
What journal was this published in?
What is the publication year?
What is the main research question?
What methodology was used?
Invoice Processing
question,field_name,data_type
"What is the invoice number?",invoice_number,str
"What is the total amount?",total_amount,float
"What is the invoice date?",invoice_date,date
"Who is the vendor?",vendor_name,str
"What is the due date?",due_date,date
Legal Document Review
What type of document is this?
Who are the parties involved?
What is the effective date?
What is the termination date?
What are the key obligations?
Document Classification with Enums
question,field_name,data_type
"What is the document type?",doc_type,"enum(report,memo,letter,invoice)"
"What topics are covered?",topics,"multi_enum(finance,hr,marketing,operations)"
"What is the priority level?",priority,"enum(low,medium,high,urgent)"
"What is the title?",title,str
"Who is the author?",author,str
Note: When using enum types in CSV files, make sure to quote the entire type specification to prevent CSV parsing issues with commas.
Development
Running Tests
pip install -e ".[dev]"
pytest
Project Structure
metaminer/
├── __init__.py # Main exports
├── inquiry.py # Core Inquiry class
├── document_reader.py # Document text extraction
├── question_parser.py # Question file parsing
├── schema_builder.py # Pydantic schema generation
├── extractor.py # Metadata extraction utilities
├── config.py # Configuration management
├── cli.py # Command-line interface
└── __main__.py # Module entry point
License
GNU Lesser General Public License v3.0 - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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
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 metaminer-0.3.3.tar.gz.
File metadata
- Download URL: metaminer-0.3.3.tar.gz
- Upload date:
- Size: 47.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa0e634e3669d24e7ad2a0649408619f104ad3eaf667df12d31d2b148f336bed
|
|
| MD5 |
b1d7d9d397fa330c9445f012b8093aed
|
|
| BLAKE2b-256 |
c31852e05227d2e63a3f5db2035066c34c8d5309c645f6001f20fd8db9e199f8
|
Provenance
The following attestation bundles were made for metaminer-0.3.3.tar.gz:
Publisher:
publish-to-pypi.yml on travis4dams/metaminer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metaminer-0.3.3.tar.gz -
Subject digest:
fa0e634e3669d24e7ad2a0649408619f104ad3eaf667df12d31d2b148f336bed - Sigstore transparency entry: 226827818
- Sigstore integration time:
-
Permalink:
travis4dams/metaminer@a1bca18110350c4af70f9cfb90f6667a109e8aa9 -
Branch / Tag:
refs/tags/v0.3.3 - Owner: https://github.com/travis4dams
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@a1bca18110350c4af70f9cfb90f6667a109e8aa9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metaminer-0.3.3-py3-none-any.whl.
File metadata
- Download URL: metaminer-0.3.3-py3-none-any.whl
- Upload date:
- Size: 31.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f312b83acb2349c44aa2756b7c5959e3ae8a34283e759dea883d0dce57c3f9cd
|
|
| MD5 |
f46adf26cc5a3879ad93b1f316fffb08
|
|
| BLAKE2b-256 |
30eee6b4a43250776fbb533b249fde07b0e59f68cc069d98432719bb6ba7a85b
|
Provenance
The following attestation bundles were made for metaminer-0.3.3-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on travis4dams/metaminer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metaminer-0.3.3-py3-none-any.whl -
Subject digest:
f312b83acb2349c44aa2756b7c5959e3ae8a34283e759dea883d0dce57c3f9cd - Sigstore transparency entry: 226827819
- Sigstore integration time:
-
Permalink:
travis4dams/metaminer@a1bca18110350c4af70f9cfb90f6667a109e8aa9 -
Branch / Tag:
refs/tags/v0.3.3 - Owner: https://github.com/travis4dams
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@a1bca18110350c4af70f9cfb90f6667a109e8aa9 -
Trigger Event:
push
-
Statement type: