Skip to content

uleague/airtableio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Async API wrapper for Airtable.

Powered by aiohttp. https://airtable.com/

Installation

pip install airtableio

Simple Usage

from airtableio import Airtable
import asyncio

TOKEN = ""
APP_ID = ""

my_airtable = Airtable(TOKEN, APP_ID)


async def call():
    result = await my_airtable.get_records("Table")
    print(result)

if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.create_task(call())

    loop.run_forever()