airtable.py

Python interface to the Airtable's REST API (by pcorpet)

Airtable.py Alternatives

Similar projects and alternatives to airtable.py based on common topics and language

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better airtable.py alternative or higher similarity.

airtable.py reviews and mentions

Posts with mentions or reviews of airtable.py. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-04.
  • ahk_requests - HTTP Requests using Python's requests library. Easily add headers, perimeters, grab webpages or API com
    3 projects | /r/AutoHotkey | 4 Apr 2023
    #Include %A_ScriptDir%\lib\ahk_requests.ahk ;grab python executable here https://github.com/samfisherirl/ahk_requests.py ;praise and credit to: https://github.com/TheArkive/JXON_ahk2 ; Simple url := "https://httpbin.org/get" ; see bottom for additional params req := requests(url) req.get() msgbox(req.jdata["origin"]) msgbox(req.txt) /* ************************************************************** */ ; Intermediate example url := "https://httpbin.org/get" headers := Map("key1", "value1") params := Map("key1", "value1") req := requests(url, headers, params) req.get() msgbox(req.jdata["origin"]) msgbox(req.txt) ; Complex example Airtable API ; https://github.com/josephbestjames/airtable.py api_key := "xxxxx" base_id := "yyyyy" table_name := "zzzzzz" url := "https://api.airtable.com/v0/" . base_id . "/" . table_name headers := Map( "Authorization", "Bearer " . api_key ) ; headers := False => gets converted to {"User-Agent":"Mozilla/5.0 (Macintosh;... params := Map("view", "Grid view") req := requests(url, headers, params) req.allowRedirect := True ;optional req.stream := False ;optional req.get() msg := "" for k, v in req.jdata { ;json data try { msg .= k . ": " . v . "`n" } catch { continue } } msgbox(msg) msgbox(req.txt)

Stats

Basic airtable.py repo stats
1
252
4.0
6 months ago

pcorpet/airtable.py is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of airtable.py is Python.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com