Skip to content

thiagoolson/airtable-python-wrapper

This branch is 745 commits behind gtalarico/pyairtable:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5b9cee4 · Mar 15, 2020
Mar 15, 2020
Jun 5, 2019
Mar 15, 2020
Jun 5, 2019
Jul 11, 2019
Mar 15, 2020
Mar 6, 2020
Jun 8, 2019
Mar 15, 2020
Feb 3, 2019
Jun 5, 2019
Jun 5, 2019
Mar 9, 2020
Aug 22, 2019
Aug 21, 2019
Mar 6, 2020
Jun 5, 2019
Aug 22, 2019

Repository files navigation

Airtable Python Wrapper

Build Status PyPI - Downloads Coverage Status Documentation Status

Airtable API Client Wrapper for Python

project-logo

Installing

pip install airtable-python-wrapper

Documentation

Full documentation here:

http://airtable-python-wrapper.readthedocs.io/

Usage Example

Below are some of the methods available in the wrapper.

For the full list and documentation visit the docs

You can see the wrapper in action in this Jupyter Notebook.

airtable = Airtable('baseKey', 'table_name')

airtable.get_all(view='MyView', maxRecords=20)

airtable.insert({'Name': 'Brian'})

airtable.search('Name', 'Tom')

airtable.update_by_field('Name', 'Tom', {'Phone': '1234-4445'})

airtable.delete_by_field('Name', 'Tom')

License

MIT

Packages

No packages published

Languages

  • Python 98.4%
  • Makefile 1.6%