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

Airtable.png

Airtable - Insert data

Give Feedback | Bug report

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

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

Description: This notebook provides a step-by-step guide on how to insert data into an Airtable database.

Input

Import library

from naas_drivers import airtable

Variables

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

Model

Insert data

data = ( airtable.connect(API_KEY, BASE_KEY, TABLE_NAME) .get(view="All opportunities", maxRecords=20) .insert({"Name": "Brian"}) )

Output

Display result

data