- Get your API key here.
- Get ID of your base here.
- Get your table ID from the table url as shown here.
dict
.
Our new LangChain Academy course on Deep Agents is now live! Enroll for free.
Our new LangChain Academy course on Deep Agents is now live! Enroll for free.
%pip install -qU pyairtable
from langchain_community.document_loaders import AirtableLoader
api_key = "xxx"
base_id = "xxx"
table_id = "xxx"
view = "xxx" # optional
loader = AirtableLoader(api_key, table_id, base_id, view=view)
docs = loader.load()
dict
.
len(docs)
3
eval(docs[0].page_content)
{'id': 'recF3GbGZCuh9sXIQ',
'createdTime': '2023-06-09T04:47:21.000Z',
'fields': {'Priority': 'High',
'Status': 'In progress',
'Name': 'Document Splitters'}}
Was this page helpful?