tap-airtable
is a Singer tap for Airtable usable with Meltano.
Built with the Meltano Tap SDK for Singer Taps.
You can install tap-airtable
using pipx
to install it globally on your system:
pipx install tap-airtable
If you're using this tap with Meltano, you can install it as an extractor. The tap is the default extractor for Airtable on MeltanoHub and can be installed using the following command:
meltano add extractor tap-airtable
You can also install the extractor directly from the source.
meltano add extractor tap-airtable --from-ref https://raw.githubusercontent.com/tomasvotava/tap-airtable/master/tap-airtable.yml
Property | Required | Description |
---|---|---|
token |
Yes | Airtable API token |
base_ids |
No | List of base IDs to extract data from (if not given, all bases are extracted) |
table_mapping |
No | Mapping of Airtable table ids to target table names (if not given table names from Airtable are used) |
If table_mapping
is not provided, the tap will use the table names from Airtable as target table names.
This may not be ideal if the table names are not human-readable or if they contain special characters.
{
"token": "<your airtable token>",
"base_ids": ["<base_id_1>", "<base_id_2>"],
"table_mapping": {
"<table_id_1>": "target_table_name_1",
"<table_id_2>": "target_table_name_2"
}
}
Run the tap with:
tap-airtable --config config.json
Run meltano config tap-airtable set --interactive
to set the configuration interactively.