mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
|
import json
|
||
|
import urllib.request
|
||
|
from typing import Any, List
|
||
|
|
||
|
from langchain_core.documents import Document
|
||
|
from langchain_core.utils import stringify_dict
|
||
|
|
||
|
from langchain_community.document_loaders.base import BaseLoader
|
||
|
|
||
|
|
||
|
class FigmaFileLoader(BaseLoader):
|
||
|
"""Load `Figma` file."""
|
||
|
|
||
|
def __init__(self, access_token: str, ids: str, key: str):
|
||
|
"""Initialize with access token, ids, and key.
|
||
|
|
||
|
Args:
|
||
|
access_token: The access token for the Figma REST API.
|
||
|
ids: The ids of the Figma file.
|
||
|
key: The key for the Figma file
|
||
|
"""
|
||
|
self.access_token = access_token
|
||
|
self.ids = ids
|
||
|
self.key = key
|
||
|
|
||
|
def _construct_figma_api_url(self) -> str:
|
||
|
api_url = "https://api.figma.com/v1/files/%s/nodes?ids=%s" % (
|
||
|
self.key,
|
||
|
self.ids,
|
||
|
)
|
||
|
return api_url
|
||
|
|
||
|
def _get_figma_file(self) -> Any:
|
||
|
"""Get Figma file from Figma REST API."""
|
||
|
headers = {"X-Figma-Token": self.access_token}
|
||
|
request = urllib.request.Request(
|
||
|
self._construct_figma_api_url(), headers=headers
|
||
|
)
|
||
|
with urllib.request.urlopen(request) as response:
|
||
|
json_data = json.loads(response.read().decode())
|
||
|
return json_data
|
||
|
|
||
|
def load(self) -> List[Document]:
|
||
|
"""Load file"""
|
||
|
data = self._get_figma_file()
|
||
|
text = stringify_dict(data)
|
||
|
metadata = {"source": self._construct_figma_api_url()}
|
||
|
return [Document(page_content=text, metadata=metadata)]
|