Get data
Tags: #airtable #database #productivity #spreadsheet #naas_drivers #operations #snippet #dataframe
Last update: 2023-04-12 (Created: 2022-02-22)
Description: This notebook provides an introduction to Airtable, a cloud-based database platform that allows users to easily access and manage data. It provides step-by-step instructions on how to get data from Airtable into a notebook for further analysis.
from naas_drivers import airtable
API_KEY = "API_KEY"
BASE_KEY = "BASE_KEY"
TABLE_NAME = "TABLE_NAME"
df = airtable.connect(API_KEY, BASE_KEY, TABLE_NAME).get(
view="All opportunities", maxRecords=20
)
df
Last modified 1mo ago