mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
24 lines
443 B
Python
24 lines
443 B
Python
import re
|
|
|
|
from .parsers import TextDocumentParser
|
|
|
|
|
|
class ConsumerDeclaration:
|
|
|
|
MATCHING_FILES = re.compile(r"^.*\.(te?xt|md|csv)$")
|
|
|
|
@classmethod
|
|
def handle(cls, sender, **kwargs):
|
|
return cls.test
|
|
|
|
@classmethod
|
|
def test(cls, doc):
|
|
|
|
if cls.MATCHING_FILES.match(doc.lower()):
|
|
return {
|
|
"parser": TextDocumentParser,
|
|
"weight": 10
|
|
}
|
|
|
|
return None
|