caselawclient.models.parser_logs

 1from __future__ import annotations
 2
 3from .documents import Document
 4
 5
 6class ParserLog(Document):
 7    """
 8    A fundamentally different type of Document that is not part of the akomaNtoso spec
 9    """
10
11    document_noun = "parser log"
12    document_noun_plural = "parser logs"
13    type_collection_name = "parser-log"
14    _default_reparse_document_type = "parserLog"
class ParserLog(caselawclient.models.documents.Document):
 7class ParserLog(Document):
 8    """
 9    A fundamentally different type of Document that is not part of the akomaNtoso spec
10    """
11
12    document_noun = "parser log"
13    document_noun_plural = "parser logs"
14    type_collection_name = "parser-log"
15    _default_reparse_document_type = "parserLog"

A fundamentally different type of Document that is not part of the akomaNtoso spec

document_noun = 'parser log'

The noun for a single instance of this document type.

document_noun_plural = 'parser logs'

The noun for a plural of this document type.

type_collection_name = 'parser-log'