Skip to main content

Async wrapper for airtable.

Project description

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()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

airtableio-0.1.2.tar.gz (9.7 kB view hashes)

Uploaded Source

Built Distribution

airtableio-0.1.2-py3-none-any.whl (10.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page