mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
21 lines
558 B
Python
21 lines
558 B
Python
def get_parser(*args, **kwargs):
|
|
from paperless_tesseract.parsers import RasterisedDocumentParser
|
|
|
|
return RasterisedDocumentParser(*args, **kwargs)
|
|
|
|
|
|
def tesseract_consumer_declaration(sender, **kwargs):
|
|
return {
|
|
"parser": get_parser,
|
|
"weight": 0,
|
|
"mime_types": {
|
|
"application/pdf": ".pdf",
|
|
"image/jpeg": ".jpg",
|
|
"image/png": ".png",
|
|
"image/tiff": ".tif",
|
|
"image/gif": ".gif",
|
|
"image/bmp": ".bmp",
|
|
"image/webp": ".webp",
|
|
},
|
|
}
|