langchain.document_loaders.parsers.txt.TextParser¶
- class langchain.document_loaders.parsers.txt.TextParser[source]¶
Bases:
BaseBlobParserParser for text blobs.
Methods
__init__()lazy_parse(blob)Lazily parse the blob.
parse(blob)Eagerly parse the blob into a document or documents.
- parse(blob: Blob) List[Document]¶
Eagerly parse the blob into a document or documents.
This is a convenience method for interactive development environment.
Production applications should favor the lazy_parse method instead.
Subclasses should generally not over-ride this parse method.
- Parameters
blob – Blob instance
- Returns
List of documents