mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
14 lines
301 B
Python
14 lines
301 B
Python
from .parsers import RasterisedDocumentParser
|
|
|
|
|
|
def tesseract_consumer_declaration(sender, **kwargs):
|
|
return {
|
|
"parser": RasterisedDocumentParser,
|
|
"weight": 0,
|
|
"mime_types": [
|
|
"application/pdf",
|
|
"image/jpeg",
|
|
"image/png"
|
|
]
|
|
}
|