Metadata-Version: 2.1
Name: amberpdf
Version: 0.1.0
Summary: Una librería para extraer texto de PDFs usando AWS Textract
Home-page: https://github.com/tuusuario/amberpdf
Author: Tu Nombre
Author-email: tu@email.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyMuPDF>=1.18.0
Requires-Dist: boto3>=1.26.0

# AmberPDF

Una librerÃ­a para extraer texto de PDFs usando AWS Textract.

## InstalaciÃ³n

pip install amberpdf

## Uso

import amberpdf

# Configura las credenciales de AWS
amberpdf.credentials('tu_access_key_id', 'tu_secret_access_key')

# Procesa un PDF
text = amberpdf.process_pdf('ruta/al/archivo.pdf')
print(text)
