mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
20 lines
504 B
Python
20 lines
504 B
Python
def get_parser(*args, **kwargs):
|
|
from .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",
|
|
},
|
|
}
|