mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
77ae8084a0
- Updated docstrings in `document_loaders` - several code fixes. - added `docs/extras/ecosystem/integrations/airtable.md` @rlancemartin, @eyurtsev
1.2 KiB
1.2 KiB
Airtable
Airtable is a cloud collaboration service.
Airtable
is a spreadsheet-database hybrid, with the features of a database but applied to a spreadsheet. The fields in an Airtable table are similar to cells in a spreadsheet, but have types such as 'checkbox', 'phone number', and 'drop-down list', and can reference file attachments like images.
Users can create a database, set up column types, add records, link tables to one another, collaborate, sort records and publish views to external websites.
Installation and Setup
pip install pyairtable
- Get your API key.
- Get the ID of your base.
- Get the table ID from the table url.
Document Loader
from langchain.document_loaders import AirtableLoader
See an example.