Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jupyter-naas
GitHub Repository: jupyter-naas/awesome-notebooks
Path: blob/master/Airtable/Airtable_Search_data.ipynb
2973 views
Kernel: Python 3

Airtable.png

Airtable - Search data

Give Feedback | Bug report

Tags: #airtable #database #productivity #spreadsheet #naas_drivers #operations #snippet #dataframe

Last update: 2023-04-12 (Created: 2022-02-22)

Description: This notebook allows users to search through data stored in Airtable, making it easy to find the information they need quickly and efficiently.

Input

Import library

from naas_drivers import airtable

Variables

API_KEY = "API_KEY" BASE_KEY = "BASE_KEY" TABLE_NAME = "TABLE_NAME"

Model

Search data

data = airtable.connect(API_KEY, BASE_KEY, TABLE_NAME).search("Name", "Tom")

Output

Display result

data