mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-19 21:33:31 -04:00
e7e29f9937
Modified Modern Treasury and Strip slightly so credentials don't have to be passed in explicitly. Thanks @mattgmarcus for adding Modern Treasury! --------- Co-authored-by: Matt Marcus <matt.g.marcus@gmail.com>
25 lines
823 B
Python
25 lines
823 B
Python
"""Loader that loads local airbyte json files."""
|
|
import json
|
|
from typing import List
|
|
|
|
from langchain.docstore.document import Document
|
|
from langchain.document_loaders.base import BaseLoader
|
|
from langchain.utils import stringify_dict
|
|
|
|
|
|
class AirbyteJSONLoader(BaseLoader):
|
|
"""Loader that loads local airbyte json files."""
|
|
|
|
def __init__(self, file_path: str):
|
|
"""Initialize with file path. This should start with '/tmp/airbyte_local/'."""
|
|
self.file_path = file_path
|
|
|
|
def load(self) -> List[Document]:
|
|
"""Load file."""
|
|
text = ""
|
|
for line in open(self.file_path, "r"):
|
|
data = json.loads(line)["_airbyte_data"]
|
|
text += stringify_dict(data)
|
|
metadata = {"source": self.file_path}
|
|
return [Document(page_content=text, metadata=metadata)]
|