Coverage for mindsdb / integrations / handlers / airtable_handler / connection_args.py: 0%
4 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from collections import OrderedDict
3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE
6connection_args = OrderedDict(
7 base_id={
8 'type': ARG_TYPE.STR,
9 'description': 'The Airtable base ID.'
10 },
11 table_name={
12 'type': ARG_TYPE.STR,
13 'description': 'The Airtable table name.'
14 },
15 api_key={
16 'type': ARG_TYPE.STR,
17 'description': 'The API key for the Airtable API.',
18 'secret': True
19 }
20)
22connection_args_example = OrderedDict(
23 base_id='dqweqweqrwwqq',
24 table_name='iris',
25 api_key='knlsndlknslk'
26)