Coverage for mindsdb / integrations / handlers / sheets_handler / connection_args.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 spreadsheet_id={ 

8 'type': ARG_TYPE.STR, 

9 'description': 'The unique ID of the Google Sheet.' 

10 }, 

11 sheet_name={ 

12 'type': ARG_TYPE.STR, 

13 'description': 'The name of the sheet within the Google Sheet.' 

14 } 

15) 

16 

17connection_args_example = OrderedDict( 

18 spreadsheet_id='12wgS-1KJ9ymUM-6VYzQ0nJYGitONxay7cMKLnEE2_d0', 

19 sheet_name='iris' 

20)