All Projects → gtalarico → Airtable Python Wrapper

gtalarico / Airtable Python Wrapper

Licence: mit
Python Airtable Client Wrapper

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Airtable Python Wrapper

Python Twitch Client
Python wrapper for Twitch API
Stars: ✭ 137 (-58.23%)
Mutual labels:  api, client
Smudge
Control the Spotify app from within Emacs.
Stars: ✭ 186 (-43.29%)
Mutual labels:  api, client
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-53.66%)
Mutual labels:  api, client
Tooty
An alternative multi-accounts Web client for Mastodon.
Stars: ✭ 124 (-62.2%)
Mutual labels:  api, client
Mtproto Core
Telegram API JS (MTProto) client library for browser and nodejs
Stars: ✭ 242 (-26.22%)
Mutual labels:  api, client
Jstp
Fast RPC for browser and Node.js based on TCP, WebSocket, and MDSF
Stars: ✭ 132 (-59.76%)
Mutual labels:  api, client
Swiftyinsta
Instagram Private API Swift
Stars: ✭ 165 (-49.7%)
Mutual labels:  api, client
Swiftagram
A modern Swift wrapper for Instagram Private API.
Stars: ✭ 100 (-69.51%)
Mutual labels:  api, client
Zenpy
Python wrapper for the Zendesk API
Stars: ✭ 222 (-32.32%)
Mutual labels:  api, client
Watsontcp
WatsonTcp is the easiest way to build TCP-based clients and servers in C#.
Stars: ✭ 209 (-36.28%)
Mutual labels:  api, client
Rust Ipfs Api
Rust crate for interfacing with the IPFS API
Stars: ✭ 105 (-67.99%)
Mutual labels:  api, client
Php Curl Class
PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs
Stars: ✭ 2,903 (+785.06%)
Mutual labels:  api, client
Flickr Sdk
Almost certainly the best Flickr API client in the world for node and the browser
Stars: ✭ 104 (-68.29%)
Mutual labels:  api, client
Notion Js
🤯 Notion API
Stars: ✭ 136 (-58.54%)
Mutual labels:  api, client
Kubernetes Pfsense Controller
Integrate Kubernetes and pfSense
Stars: ✭ 100 (-69.51%)
Mutual labels:  api, client
Restrequest4delphi
API to consume REST services written in any programming language with support to Lazarus and Delphi
Stars: ✭ 162 (-50.61%)
Mutual labels:  api, client
Python Binance Chain
Binance Chain Exchange API python implementation for automated trading
Stars: ✭ 96 (-70.73%)
Mutual labels:  api, client
Rundeck Cli
CLI tool for Rundeck
Stars: ✭ 98 (-70.12%)
Mutual labels:  api, client
Verb
Organize and send HTTP requests from Emacs
Stars: ✭ 205 (-37.5%)
Mutual labels:  api, client
Httpie
As easy as /aitch-tee-tee-pie/ 🥧 Modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more. https://twitter.com/httpie
Stars: ✭ 53,052 (+16074.39%)
Mutual labels:  api, client

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].