MindsDB 1.2.9__py3-none-any.whl → 24.12.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of MindsDB might be problematic. Click here for more details.
- MindsDB-24.12.4.0.dist-info/LICENSE +199 -0
- MindsDB-24.12.4.0.dist-info/METADATA +910 -0
- MindsDB-24.12.4.0.dist-info/RECORD +1922 -0
- {MindsDB-1.2.9.dist-info → MindsDB-24.12.4.0.dist-info}/WHEEL +1 -1
- mindsdb/__about__.py +5 -5
- mindsdb/__init__.py +1 -11
- mindsdb/__main__.py +556 -0
- mindsdb/api/common/check_auth.py +42 -0
- mindsdb/api/executor/__init__.py +2 -0
- mindsdb/api/executor/command_executor.py +2047 -0
- mindsdb/api/executor/controllers/__init__.py +1 -0
- mindsdb/api/executor/controllers/session_controller.py +91 -0
- mindsdb/api/executor/data_types/answer.py +16 -0
- mindsdb/api/executor/data_types/response_type.py +8 -0
- mindsdb/api/executor/datahub/__init__.py +1 -0
- mindsdb/api/executor/datahub/classes/tables_row.py +65 -0
- mindsdb/api/executor/datahub/datanodes/__init__.py +4 -0
- mindsdb/api/executor/datahub/datanodes/datanode.py +20 -0
- mindsdb/api/executor/datahub/datanodes/information_schema_datanode.py +180 -0
- mindsdb/api/executor/datahub/datanodes/integration_datanode.py +281 -0
- mindsdb/api/executor/datahub/datanodes/mindsdb_tables.py +428 -0
- mindsdb/api/executor/datahub/datanodes/project_datanode.py +186 -0
- mindsdb/api/executor/datahub/datanodes/system_tables.py +525 -0
- mindsdb/api/executor/exceptions.py +39 -0
- mindsdb/api/executor/planner/__init__.py +5 -0
- mindsdb/api/executor/planner/exceptions.py +3 -0
- mindsdb/api/executor/planner/plan_join.py +640 -0
- mindsdb/api/executor/planner/plan_join_ts.py +384 -0
- mindsdb/api/executor/planner/query_plan.py +29 -0
- mindsdb/api/executor/planner/query_planner.py +837 -0
- mindsdb/api/executor/planner/query_prepare.py +527 -0
- mindsdb/api/executor/planner/step_result.py +19 -0
- mindsdb/api/executor/planner/steps.py +262 -0
- mindsdb/api/executor/planner/ts_utils.py +93 -0
- mindsdb/api/executor/planner/utils.py +126 -0
- mindsdb/api/executor/sql_query/result_set.py +312 -0
- mindsdb/api/executor/sql_query/sql_query.py +318 -0
- mindsdb/api/executor/sql_query/steps/__init__.py +13 -0
- mindsdb/api/executor/sql_query/steps/apply_predictor_step.py +424 -0
- mindsdb/api/executor/sql_query/steps/base.py +21 -0
- mindsdb/api/executor/sql_query/steps/delete_step.py +49 -0
- mindsdb/api/executor/sql_query/steps/fetch_dataframe.py +116 -0
- mindsdb/api/executor/sql_query/steps/insert_step.py +129 -0
- mindsdb/api/executor/sql_query/steps/join_step.py +109 -0
- mindsdb/api/executor/sql_query/steps/map_reduce_step.py +179 -0
- mindsdb/api/executor/sql_query/steps/multiple_step.py +24 -0
- mindsdb/api/executor/sql_query/steps/prepare_steps.py +59 -0
- mindsdb/api/executor/sql_query/steps/project_step.py +86 -0
- mindsdb/api/executor/sql_query/steps/sql_steps.py +41 -0
- mindsdb/api/executor/sql_query/steps/subselect_step.py +159 -0
- mindsdb/api/executor/sql_query/steps/union_step.py +56 -0
- mindsdb/api/executor/sql_query/steps/update_step.py +129 -0
- mindsdb/api/executor/utilities/functions.py +37 -0
- mindsdb/api/executor/utilities/sql.py +195 -0
- mindsdb/api/http/gui.py +94 -0
- mindsdb/api/http/gunicorn_wrapper.py +17 -0
- mindsdb/api/http/initialize.py +454 -0
- mindsdb/api/http/namespaces/agents.py +499 -0
- mindsdb/api/http/namespaces/analysis.py +117 -0
- mindsdb/api/http/namespaces/auth.py +167 -0
- mindsdb/api/http/namespaces/chatbots.py +318 -0
- mindsdb/api/http/namespaces/config.py +286 -0
- mindsdb/api/http/namespaces/configs/agents.py +3 -0
- mindsdb/api/http/namespaces/configs/analysis.py +3 -0
- mindsdb/api/http/namespaces/configs/auth.py +4 -0
- mindsdb/api/http/namespaces/configs/chatbots.py +3 -0
- mindsdb/api/http/namespaces/configs/config.py +3 -0
- mindsdb/api/http/namespaces/configs/databases.py +3 -0
- mindsdb/api/http/namespaces/configs/default.py +4 -0
- mindsdb/api/http/namespaces/configs/files.py +4 -0
- mindsdb/api/http/namespaces/configs/handlers.py +3 -0
- mindsdb/api/http/namespaces/configs/jobs.py +3 -0
- mindsdb/api/http/namespaces/configs/knowledge_bases.py +3 -0
- mindsdb/api/http/namespaces/configs/projects.py +3 -0
- mindsdb/api/http/namespaces/configs/skills.py +3 -0
- mindsdb/api/http/namespaces/configs/sql.py +3 -0
- mindsdb/api/http/namespaces/configs/tabs.py +3 -0
- mindsdb/api/http/namespaces/configs/tree.py +3 -0
- mindsdb/api/http/namespaces/configs/util.py +3 -0
- mindsdb/api/http/namespaces/configs/webhooks.py +3 -0
- mindsdb/api/http/namespaces/databases.py +394 -0
- mindsdb/api/http/namespaces/default.py +152 -0
- mindsdb/api/http/namespaces/file.py +191 -0
- mindsdb/api/http/namespaces/handlers.py +232 -0
- mindsdb/api/http/namespaces/jobs.py +99 -0
- mindsdb/api/http/namespaces/knowledge_bases.py +420 -0
- mindsdb/api/http/namespaces/models.py +297 -0
- mindsdb/api/http/namespaces/projects.py +46 -0
- mindsdb/api/http/namespaces/skills.py +170 -0
- mindsdb/api/http/namespaces/sql.py +162 -0
- mindsdb/api/http/namespaces/tab.py +131 -0
- mindsdb/api/http/namespaces/tree.py +105 -0
- mindsdb/api/http/namespaces/util.py +144 -0
- mindsdb/api/http/namespaces/views.py +153 -0
- mindsdb/api/http/namespaces/webhooks.py +29 -0
- mindsdb/api/http/start.py +67 -0
- mindsdb/api/http/utils.py +37 -0
- mindsdb/api/mongo/classes/__init__.py +5 -0
- mindsdb/api/mongo/classes/query_sql.py +18 -0
- mindsdb/api/mongo/classes/responder.py +45 -0
- mindsdb/api/mongo/classes/responder_collection.py +34 -0
- mindsdb/api/mongo/classes/scram.py +86 -0
- mindsdb/api/mongo/classes/session.py +23 -0
- mindsdb/api/mongo/functions/__init__.py +19 -0
- mindsdb/api/mongo/responders/__init__.py +73 -0
- mindsdb/api/mongo/responders/add_shard.py +13 -0
- mindsdb/api/mongo/responders/aggregate.py +90 -0
- mindsdb/api/mongo/responders/buildinfo.py +17 -0
- mindsdb/api/mongo/responders/coll_stats.py +62 -0
- mindsdb/api/mongo/responders/company_id.py +25 -0
- mindsdb/api/mongo/responders/connection_status.py +22 -0
- mindsdb/api/mongo/responders/count.py +21 -0
- mindsdb/api/mongo/responders/db_stats.py +31 -0
- mindsdb/api/mongo/responders/delete.py +105 -0
- mindsdb/api/mongo/responders/describe.py +23 -0
- mindsdb/api/mongo/responders/end_sessions.py +13 -0
- mindsdb/api/mongo/responders/find.py +175 -0
- mindsdb/api/mongo/responders/get_cmd_line_opts.py +18 -0
- mindsdb/api/mongo/responders/get_free_monitoring_status.py +14 -0
- mindsdb/api/mongo/responders/get_parameter.py +23 -0
- mindsdb/api/mongo/responders/getlog.py +14 -0
- mindsdb/api/mongo/responders/host_info.py +28 -0
- mindsdb/api/mongo/responders/insert.py +268 -0
- mindsdb/api/mongo/responders/is_master.py +20 -0
- mindsdb/api/mongo/responders/is_master_lower.py +13 -0
- mindsdb/api/mongo/responders/list_collections.py +55 -0
- mindsdb/api/mongo/responders/list_databases.py +37 -0
- mindsdb/api/mongo/responders/list_indexes.py +22 -0
- mindsdb/api/mongo/responders/ping.py +13 -0
- mindsdb/api/mongo/responders/recv_chunk_start.py +13 -0
- mindsdb/api/mongo/responders/replsetgetstatus.py +13 -0
- mindsdb/api/mongo/responders/sasl_continue.py +34 -0
- mindsdb/api/mongo/responders/sasl_start.py +33 -0
- mindsdb/api/mongo/responders/update_range_deletions.py +12 -0
- mindsdb/api/mongo/responders/whatsmyuri.py +18 -0
- mindsdb/api/mongo/server.py +388 -0
- mindsdb/api/mongo/start.py +15 -0
- mindsdb/api/mongo/utilities/mongodb_ast.py +257 -0
- mindsdb/api/mongo/utilities/mongodb_parser.py +145 -0
- mindsdb/api/mongo/utilities/mongodb_query.py +84 -0
- mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +130 -0
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +3 -0
- mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +37 -0
- mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +22 -0
- mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +151 -0
- mindsdb/api/mysql/mysql_proxy/data_types/__init__.py +0 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +212 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +166 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +15 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +140 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +44 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +94 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +159 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +52 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +58 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +20 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +80 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +96 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +106 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +13 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +54 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +46 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +53 -0
- mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +16 -0
- mindsdb/api/mysql/mysql_proxy/executor/__init__.py +2 -0
- mindsdb/api/mysql/mysql_proxy/executor/mysql_executor.py +138 -0
- mindsdb/api/mysql/mysql_proxy/external_libs/__init__.py +0 -0
- mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +135 -0
- mindsdb/api/mysql/mysql_proxy/libs/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +1030 -0
- mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +930 -0
- mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
- mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +18 -0
- mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +48 -0
- mindsdb/api/mysql/start.py +13 -0
- mindsdb/api/postgres/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/executor/__init__.py +1 -0
- mindsdb/api/postgres/postgres_proxy/executor/executor.py +188 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/__init__.py +0 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +322 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +34 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +31 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +1265 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +31 -0
- mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
- mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
- mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +10 -0
- mindsdb/api/postgres/start.py +11 -0
- mindsdb/integrations/__init__.py +0 -0
- mindsdb/integrations/handlers/__init__.py +0 -0
- mindsdb/integrations/handlers/access_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/access_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/access_handler/access_handler.py +197 -0
- mindsdb/integrations/handlers/access_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/access_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/access_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/access_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +32 -0
- mindsdb/integrations/handlers/aerospike_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aerospike_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +236 -0
- mindsdb/integrations/handlers/aerospike_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/aerospike_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aerospike_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +36 -0
- mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/airtable_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +211 -0
- mindsdb/integrations/handlers/airtable_handler/connection_args.py +26 -0
- mindsdb/integrations/handlers/airtable_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/airtable_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +34 -0
- mindsdb/integrations/handlers/altibase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/altibase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +253 -0
- mindsdb/integrations/handlers/altibase_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/altibase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/altibase_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/altibase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +67 -0
- mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler_dsn.py +68 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +180 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +21 -0
- mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anthropic_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +108 -0
- mindsdb/integrations/handlers/anthropic_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/anthropic_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +290 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/settings.py +51 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/anyscale_endpoints_handler/tests/test_anyscale_endpoints_handler.py +212 -0
- mindsdb/integrations/handlers/apache_doris_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/apache_doris_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
- mindsdb/integrations/handlers/apache_doris_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aqicn_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn.py +35 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +97 -0
- mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +425 -0
- mindsdb/integrations/handlers/aqicn_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/aqicn_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/athena_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/athena_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/athena_handler/athena_handler.py +218 -0
- mindsdb/integrations/handlers/athena_handler/connection_args.py +51 -0
- mindsdb/integrations/handlers/athena_handler/icon.svg +22 -0
- mindsdb/integrations/handlers/athena_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/athena_handler/tests/test_athena_handler.py +85 -0
- mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/aurora_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +140 -0
- mindsdb/integrations/handlers/aurora_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/aurora_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/aurora_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/aurora_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +37 -0
- mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +37 -0
- mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autogluon_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
- mindsdb/integrations/handlers/autogluon_handler/config.py +17 -0
- mindsdb/integrations/handlers/autogluon_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autokeras_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +139 -0
- mindsdb/integrations/handlers/autokeras_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/autosklearn_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +53 -0
- mindsdb/integrations/handlers/autosklearn_handler/config.py +29 -0
- mindsdb/integrations/handlers/autosklearn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/azure_blob_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/azure_blob_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/azure_blob_handler/azure_blob_handler.py +346 -0
- mindsdb/integrations/handlers/azure_blob_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/azure_blob_handler/icon.svg +30 -0
- mindsdb/integrations/handlers/azure_blob_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/bedrock_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/bedrock_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/bedrock_handler/bedrock_handler.py +328 -0
- mindsdb/integrations/handlers/bedrock_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/bedrock_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/bedrock_handler/settings.py +287 -0
- mindsdb/integrations/handlers/bedrock_handler/utilities.py +46 -0
- mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/bigquery_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +181 -0
- mindsdb/integrations/handlers/bigquery_handler/connection_args.py +30 -0
- mindsdb/integrations/handlers/bigquery_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/bigquery_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +221 -0
- mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/binance_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
- mindsdb/integrations/handlers/binance_handler/binance_tables.py +175 -0
- mindsdb/integrations/handlers/binance_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/binance_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/box_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/box_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/box_handler/box_handler.py +257 -0
- mindsdb/integrations/handlers/box_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/box_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/box_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/byom_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/byom_handler/byom_handler.py +678 -0
- mindsdb/integrations/handlers/byom_handler/connection_args.py +19 -0
- mindsdb/integrations/handlers/byom_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +229 -0
- mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cassandra_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +27 -0
- mindsdb/integrations/handlers/cassandra_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/cassandra_handler/icon.svg +33 -0
- mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/cassandra_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +39 -0
- mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/chromadb_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +491 -0
- mindsdb/integrations/handlers/chromadb_handler/connection_args.py +28 -0
- mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
- mindsdb/integrations/handlers/chromadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/chromadb_handler/settings.py +62 -0
- mindsdb/integrations/handlers/chromadb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ckan_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +310 -0
- mindsdb/integrations/handlers/ckan_handler/connection_args.py +22 -0
- mindsdb/integrations/handlers/ckan_handler/icon.png +0 -0
- mindsdb/integrations/handlers/ckan_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ckan_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +156 -0
- mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/clickhouse_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +168 -0
- mindsdb/integrations/handlers/clickhouse_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/clickhouse_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/clickhouse_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +41 -0
- mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/clipdrop_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +87 -0
- mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +193 -0
- mindsdb/integrations/handlers/clipdrop_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +219 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/connection_args.py +33 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +50 -0
- mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +123 -0
- mindsdb/integrations/handlers/cloud_sql_handler/connection_args.py +41 -0
- mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
- mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +37 -0
- mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +37 -0
- mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cockroach_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +11 -0
- mindsdb/integrations/handlers/cockroach_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/cockroach_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +34 -0
- mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/cohere_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +88 -0
- mindsdb/integrations/handlers/cohere_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/cohere_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/coinbase_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +138 -0
- mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
- mindsdb/integrations/handlers/coinbase_handler/connection_args.py +34 -0
- mindsdb/integrations/handlers/coinbase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/coinbase_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/confluence_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +102 -0
- mindsdb/integrations/handlers/confluence_handler/confluence_table.py +193 -0
- mindsdb/integrations/handlers/confluence_handler/connection_args.py +32 -0
- mindsdb/integrations/handlers/confluence_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/confluence_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/confluence_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
- mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/couchbase_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/couchbase_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +208 -0
- mindsdb/integrations/handlers/couchbase_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/couchbase_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/couchbase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +39 -0
- mindsdb/integrations/handlers/couchbasevector_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/couchbasevector_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/couchbasevector_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/couchbasevector_handler/couchbasevector_handler.py +472 -0
- mindsdb/integrations/handlers/couchbasevector_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/couchbasevector_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/couchbasevector_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/crate_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/crate_handler/crate_handler.py +226 -0
- mindsdb/integrations/handlers/crate_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/crate_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/crate_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +46 -0
- mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/d0lt_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
- mindsdb/integrations/handlers/d0lt_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/d0lt_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +53 -0
- mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/databend_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/databend_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/databend_handler/databend_handler.py +199 -0
- mindsdb/integrations/handlers/databend_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/databend_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/databend_handler/tests/__init__.py +1 -0
- mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +37 -0
- mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/databricks_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/databricks_handler/connection_args.py +58 -0
- mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +261 -0
- mindsdb/integrations/handlers/databricks_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/databricks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/databricks_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +37 -0
- mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/datastax_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
- mindsdb/integrations/handlers/datastax_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/datastax_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +38 -0
- mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/db2_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/db2_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/db2_handler/db2_handler.py +235 -0
- mindsdb/integrations/handlers/db2_handler/icon.svg +49 -0
- mindsdb/integrations/handlers/db2_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/db2_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +46 -0
- mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/derby_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/derby_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/derby_handler/derby_handler.py +203 -0
- mindsdb/integrations/handlers/derby_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/derby_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/derby_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +46 -0
- mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
- mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
- mindsdb/integrations/handlers/discord_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/discord_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/discord_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +59 -0
- mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dockerhub_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/dockerhub_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +55 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +112 -0
- mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
- mindsdb/integrations/handlers/dockerhub_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/documentdb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/documentdb_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +41 -0
- mindsdb/integrations/handlers/documentdb_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dremio_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/dremio_handler/connection_args.py +31 -0
- mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +222 -0
- mindsdb/integrations/handlers/dremio_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/dremio_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/dremio_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +35 -0
- mindsdb/integrations/handlers/dropbox_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dropbox_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/dropbox_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/dropbox_handler/dropbox_handler.py +253 -0
- mindsdb/integrations/handlers/dropbox_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/dropbox_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/dropbox_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dropbox_handler/tests/test_dropbox_handler.py +18 -0
- mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/druid_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/druid_handler/connection_args.py +51 -0
- mindsdb/integrations/handlers/druid_handler/druid_handler.py +216 -0
- mindsdb/integrations/handlers/druid_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/druid_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +35 -0
- mindsdb/integrations/handlers/dspy_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dspy_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/dspy_handler/dspy_handler.py +250 -0
- mindsdb/integrations/handlers/dspy_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/dspy_handler/requirements.txt +8 -0
- mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/duckdb_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/duckdb_handler/connection_args.py +17 -0
- mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +170 -0
- mindsdb/integrations/handlers/duckdb_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/duckdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +48 -0
- mindsdb/integrations/handlers/dummy_data_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dummy_data_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/dummy_data_handler/dummy_data_handler.py +97 -0
- mindsdb/integrations/handlers/dummy_data_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/dynamodb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/dynamodb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +293 -0
- mindsdb/integrations/handlers/dynamodb_handler/icon.svg +17 -0
- mindsdb/integrations/handlers/dynamodb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +34 -0
- mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/edgelessdb_handler/connection_args.py +45 -0
- mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +12 -0
- mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/edgelessdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +66 -0
- mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/elasticsearch_handler/connection_args.py +38 -0
- mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +288 -0
- mindsdb/integrations/handlers/elasticsearch_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/elasticsearch_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +32 -0
- mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/email_handler/email_client.py +165 -0
- mindsdb/integrations/handlers/email_handler/email_handler.py +99 -0
- mindsdb/integrations/handlers/email_handler/email_ingestor.py +86 -0
- mindsdb/integrations/handlers/email_handler/email_tables.py +159 -0
- mindsdb/integrations/handlers/email_handler/icon.png +0 -0
- mindsdb/integrations/handlers/email_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/email_handler/settings.py +60 -0
- mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/empress_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/empress_handler/connection_args.py +42 -0
- mindsdb/integrations/handlers/empress_handler/empress_handler.py +211 -0
- mindsdb/integrations/handlers/empress_handler/icon.png +0 -0
- mindsdb/integrations/handlers/empress_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/empress_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +55 -0
- mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
- mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
- mindsdb/integrations/handlers/eventbrite_handler/icon.png +0 -0
- mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +216 -0
- mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/faunadb_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/faunadb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +267 -0
- mindsdb/integrations/handlers/faunadb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/faunadb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
- mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/file_handler/__init__.py +16 -0
- mindsdb/integrations/handlers/file_handler/file_handler.py +528 -0
- mindsdb/integrations/handlers/file_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/file_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/file_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/file_handler/tests/data/test.txt +10 -0
- mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +458 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_handler.py +56 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/financial_modeling_tables.py +89 -0
- mindsdb/integrations/handlers/financial_modeling_prep_handler/icon.svg +67 -0
- mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/firebird_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/firebird_handler/connection_args.py +34 -0
- mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +240 -0
- mindsdb/integrations/handlers/firebird_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/firebird_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/firebird_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +37 -0
- mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/flaml_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +47 -0
- mindsdb/integrations/handlers/flaml_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/frappe_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_client.py +111 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
- mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +82 -0
- mindsdb/integrations/handlers/frappe_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/gcs_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gcs_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/gcs_handler/connection_args.py +29 -0
- mindsdb/integrations/handlers/gcs_handler/gcs_handler.py +375 -0
- mindsdb/integrations/handlers/gcs_handler/gcs_tables.py +50 -0
- mindsdb/integrations/handlers/gcs_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/gcs_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/github_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/github_handler/connection_args.py +32 -0
- mindsdb/integrations/handlers/github_handler/github_handler.py +124 -0
- mindsdb/integrations/handlers/github_handler/github_tables.py +965 -0
- mindsdb/integrations/handlers/github_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/github_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gitlab_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
- mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
- mindsdb/integrations/handlers/gitlab_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/gitlab_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/gmail_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/gmail_handler/connection_args.py +27 -0
- mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +566 -0
- mindsdb/integrations/handlers/gmail_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/gmail_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/gmail_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +50 -0
- mindsdb/integrations/handlers/gmail_handler/utils.py +45 -0
- mindsdb/integrations/handlers/google_analytics_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_analytics_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/google_analytics_handler/google_analytics_handler.py +129 -0
- mindsdb/integrations/handlers/google_analytics_handler/google_analytics_tables.py +283 -0
- mindsdb/integrations/handlers/google_analytics_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/google_analytics_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_analytics_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_analytics_handler/tests/test_google_analytics_handler.py +48 -0
- mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_books_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
- mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +185 -0
- mindsdb/integrations/handlers/google_books_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_books_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +41 -0
- mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_calendar_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/google_calendar_handler/connection_args.py +12 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +292 -0
- mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +228 -0
- mindsdb/integrations/handlers/google_calendar_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/google_calendar_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +56 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/connection_args.py +20 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +396 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +435 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +64 -0
- mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_fit_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
- mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +69 -0
- mindsdb/integrations/handlers/google_fit_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/google_fit_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/google_gemini_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_gemini_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/google_gemini_handler/google_gemini_handler.py +370 -0
- mindsdb/integrations/handlers/google_gemini_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/google_gemini_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/google_search_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/google_search_handler/connection_args.py +15 -0
- mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +205 -0
- mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +220 -0
- mindsdb/integrations/handlers/google_search_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/google_search_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/google_search_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +55 -0
- mindsdb/integrations/handlers/greptimedb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/greptimedb_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/greptimedb_handler/greptimedb_handler.py +21 -0
- mindsdb/integrations/handlers/greptimedb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/greptimedb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/groq_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/groq_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/groq_handler/groq_handler.py +136 -0
- mindsdb/integrations/handlers/groq_handler/icon.svg +30 -0
- mindsdb/integrations/handlers/groq_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/groq_handler/settings.py +31 -0
- mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hackernews_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
- mindsdb/integrations/handlers/hackernews_handler/hn_table.py +152 -0
- mindsdb/integrations/handlers/hackernews_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hana_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hana_handler/connection_args.py +57 -0
- mindsdb/integrations/handlers/hana_handler/hana_handler.py +259 -0
- mindsdb/integrations/handlers/hana_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/hana_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hive_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hive_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/hive_handler/hive_handler.py +224 -0
- mindsdb/integrations/handlers/hive_handler/icon.svg +41 -0
- mindsdb/integrations/handlers/hive_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/hive_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +50 -0
- mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hsqldb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/hsqldb_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +197 -0
- mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
- mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
- mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +589 -0
- mindsdb/integrations/handlers/hubspot_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +6 -0
- mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +250 -0
- mindsdb/integrations/handlers/huggingface_api_handler/icon.svg +24 -0
- mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/huggingface_api_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +9 -0
- mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/huggingface_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/huggingface_handler/finetune.py +223 -0
- mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +383 -0
- mindsdb/integrations/handlers/huggingface_handler/icon.svg +24 -0
- mindsdb/integrations/handlers/huggingface_handler/requirements.txt +5 -0
- mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +6 -0
- mindsdb/integrations/handlers/huggingface_handler/settings.py +27 -0
- mindsdb/integrations/handlers/ibm_cos_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ibm_cos_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/ibm_cos_handler/connection_args.py +38 -0
- mindsdb/integrations/handlers/ibm_cos_handler/ibm_cos_handler.py +338 -0
- mindsdb/integrations/handlers/ibm_cos_handler/icon.svg +54 -0
- mindsdb/integrations/handlers/ibm_cos_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ibm_cos_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ibm_cos_handler/tests/test_ibm_cos_handler.py +23 -0
- mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ignite_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/ignite_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/ignite_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +207 -0
- mindsdb/integrations/handlers/ignite_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ignite_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +33 -0
- mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/impala_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/impala_handler/connection_args.py +37 -0
- mindsdb/integrations/handlers/impala_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/impala_handler/impala_handler.py +156 -0
- mindsdb/integrations/handlers/impala_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/impala_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +50 -0
- mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
- mindsdb/integrations/handlers/influxdb_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
- mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
- mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/informix_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/informix_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
- mindsdb/integrations/handlers/informix_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/informix_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +52 -0
- mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
- mindsdb/integrations/handlers/ingres_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/ingres_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/ingres_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +210 -0
- mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/ingres_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +53 -0
- mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/instatus_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +127 -0
- mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +393 -0
- mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/intercom_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
- mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
- mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
- mindsdb/integrations/handlers/jira_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
- mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
- mindsdb/integrations/handlers/jira_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/kinetica_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/kinetica_handler/connection_args.py +54 -0
- mindsdb/integrations/handlers/kinetica_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +12 -0
- mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lancedb_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/lancedb_handler/connection_args.py +35 -0
- mindsdb/integrations/handlers/lancedb_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +329 -0
- mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/lancedb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +221 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/langchain_embedding_handler/vllm_embeddings.py +111 -0
- mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/langchain_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/langchain_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +278 -0
- mindsdb/integrations/handlers/langchain_handler/requirements.txt +8 -0
- mindsdb/integrations/handlers/langchain_handler/tools.py +247 -0
- mindsdb/integrations/handlers/leonardoai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/leonardoai_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/leonardoai_handler/icon.svg +306 -0
- mindsdb/integrations/handlers/leonardoai_handler/leonardo_ai_handler.py +225 -0
- mindsdb/integrations/handlers/leonardoai_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/libsql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/libsql_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/libsql_handler/connection_args.py +22 -0
- mindsdb/integrations/handlers/libsql_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/libsql_handler/libsql_handler.py +192 -0
- mindsdb/integrations/handlers/libsql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/libsql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/libsql_handler/tests/test_libsql_handler.py +45 -0
- mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
- mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
- mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
- mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
- mindsdb/integrations/handlers/lightdash_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightfm_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/lightfm_handler/helpers.py +175 -0
- mindsdb/integrations/handlers/lightfm_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +198 -0
- mindsdb/integrations/handlers/lightfm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/lightfm_handler/settings.py +7 -0
- mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lightwood_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
- mindsdb/integrations/handlers/lightwood_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
- mindsdb/integrations/handlers/lightwood_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/lightwood_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +258 -0
- mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
- mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/lindorm_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/lindorm_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
- mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/lindorm_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +33 -0
- mindsdb/integrations/handlers/litellm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/litellm_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/litellm_handler/icon.png +0 -0
- mindsdb/integrations/handlers/litellm_handler/litellm_handler.py +141 -0
- mindsdb/integrations/handlers/litellm_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/litellm_handler/settings.py +39 -0
- mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/llama_index_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/llama_index_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +201 -0
- mindsdb/integrations/handlers/llama_index_handler/requirements.txt +5 -0
- mindsdb/integrations/handlers/llama_index_handler/settings.py +65 -0
- mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ludwig_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
- mindsdb/integrations/handlers/ludwig_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +68 -0
- mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/ludwig_handler/utils.py +12 -0
- mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/luma_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/luma_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/luma_handler/icon.png +0 -0
- mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
- mindsdb/integrations/handlers/luma_handler/luma_handler.py +77 -0
- mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
- mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mariadb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/mariadb_handler/connection_args.py +76 -0
- mindsdb/integrations/handlers/mariadb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
- mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/materialize_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/materialize_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
- mindsdb/integrations/handlers/materialize_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +56 -0
- mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/matrixone_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/matrixone_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/matrixone_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +168 -0
- mindsdb/integrations/handlers/matrixone_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/matrixone_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +56 -0
- mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/maxdb_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/maxdb_handler/connection_args.py +42 -0
- mindsdb/integrations/handlers/maxdb_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +185 -0
- mindsdb/integrations/handlers/maxdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/maxdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +55 -0
- mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mediawiki_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/mediawiki_handler/icon.svg +153 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
- mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
- mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mendeley_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/mendeley_handler/icon.svg +14 -0
- mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
- mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +134 -0
- mindsdb/integrations/handlers/mendeley_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mendeley_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +108 -0
- mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/merlion_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/merlion_handler/adapters.py +182 -0
- mindsdb/integrations/handlers/merlion_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
- mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/milvus_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/milvus_handler/connection_args.py +112 -0
- mindsdb/integrations/handlers/milvus_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +332 -0
- mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/milvus_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/__init__.py +23 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/minds_endpoint_handler.py +132 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/settings.py +18 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/minds_endpoint_handler/tests/test_minds_endpoint_handler.py +160 -0
- mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mlflow_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/mlflow_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +83 -0
- mindsdb/integrations/handlers/mlflow_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/monetdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/monetdb_handler/connection_args.py +44 -0
- mindsdb/integrations/handlers/monetdb_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +219 -0
- mindsdb/integrations/handlers/monetdb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/monetdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +50 -0
- mindsdb/integrations/handlers/monetdb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +50 -0
- mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mongodb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/mongodb_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/mongodb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +372 -0
- mindsdb/integrations/handlers/mongodb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mongodb_handler/tests/test_mongodb_handler.py +125 -0
- mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +286 -0
- mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/monkeylearn_handler/icon.png +0 -0
- mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +81 -0
- mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/icon.svg +31 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_graph_api_one_drive_client.py +102 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_handler.py +252 -0
- mindsdb/integrations/handlers/ms_one_drive_handler/ms_one_drive_tables.py +100 -0
- mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ms_teams_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/ms_teams_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +193 -0
- mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mssql_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/mssql_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/mssql_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +218 -0
- mindsdb/integrations/handlers/mssql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mssql_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +169 -0
- mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/mysql_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/mysql_handler/connection_args.py +76 -0
- mindsdb/integrations/handlers/mysql_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +214 -0
- mindsdb/integrations/handlers/mysql_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/mysql_handler/settings.py +46 -0
- mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/neuralforecast_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
- mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +2 -0
- mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/newsapi_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/newsapi_handler/connection_args.py +14 -0
- mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
- mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +209 -0
- mindsdb/integrations/handlers/newsapi_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/newsapi_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +90 -0
- mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/notion_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
- mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
- mindsdb/integrations/handlers/notion_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/notion_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +62 -0
- mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/npm_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/npm_handler/api.py +26 -0
- mindsdb/integrations/handlers/npm_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/npm_handler/npm_handler.py +53 -0
- mindsdb/integrations/handlers/npm_handler/npm_tables.py +242 -0
- mindsdb/integrations/handlers/npm_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/connection_args.py +65 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +228 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +50 -0
- mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oceanbase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/oceanbase_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
- mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/oceanbase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +56 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +45 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +100 -0
- mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
- mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ollama_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/ollama_handler/icon.png +0 -0
- mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +171 -0
- mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openai_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/openai_handler/constants.py +36 -0
- mindsdb/integrations/handlers/openai_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/openai_handler/helpers.py +197 -0
- mindsdb/integrations/handlers/openai_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/openai_handler/model_using_args.py +5 -0
- mindsdb/integrations/handlers/openai_handler/openai_handler.py +1188 -0
- mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/openai_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/openai_handler/tests/test_openai_handler.py +509 -0
- mindsdb/integrations/handlers/openbb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openbb_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/openbb_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +119 -0
- mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +337 -0
- mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/opengauss_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/opengauss_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/opengauss_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +11 -0
- mindsdb/integrations/handlers/opengauss_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +45 -0
- mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
- mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
- mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/openstreetmap_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
- mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/oracle_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/oracle_handler/connection_args.py +70 -0
- mindsdb/integrations/handlers/oracle_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +246 -0
- mindsdb/integrations/handlers/oracle_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/oracle_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +32 -0
- mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/orioledb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/orioledb_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/orioledb_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +11 -0
- mindsdb/integrations/handlers/orioledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +56 -0
- mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/palm_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/palm_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
- mindsdb/integrations/handlers/palm_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/paypal_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/paypal_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
- mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +283 -0
- mindsdb/integrations/handlers/paypal_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pgvector_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pgvector_handler/connection_args.py +54 -0
- mindsdb/integrations/handlers/pgvector_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +447 -0
- mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -0
- mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/phoenix_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/phoenix_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
- mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +229 -0
- mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/phoenix_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +33 -0
- mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pinecone_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pinecone_handler/connection_args.py +53 -0
- mindsdb/integrations/handlers/pinecone_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +304 -0
- mindsdb/integrations/handlers/pinecone_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pinecone_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pinot_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/pinot_handler/connection_args.py +49 -0
- mindsdb/integrations/handlers/pinot_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +223 -0
- mindsdb/integrations/handlers/pinot_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/pinot_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +36 -0
- mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pirateweather_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/pirateweather_handler/connection_args.py +14 -0
- mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
- mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +236 -0
- mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/plaid_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/plaid_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
- mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +159 -0
- mindsdb/integrations/handlers/plaid_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/plaid_handler/utils.py +9 -0
- mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/planetscale_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/planetscale_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/planetscale_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +14 -0
- mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +103 -0
- mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/portkey_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/portkey_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/portkey_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/portkey_handler/portkey_handler.py +79 -0
- mindsdb/integrations/handlers/portkey_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/postgres_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/postgres_handler/connection_args.py +65 -0
- mindsdb/integrations/handlers/postgres_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +396 -0
- mindsdb/integrations/handlers/postgres_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/postgres_handler/tests/test_postgres_handler.py +172 -0
- mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pycaret_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/pycaret_handler/icon.png +0 -0
- mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
- mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/pycaret_handler/test/__init__.py +0 -0
- mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +242 -0
- mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/pypi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/pypi_handler/api.py +152 -0
- mindsdb/integrations/handlers/pypi_handler/icon.svg +123 -0
- mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +73 -0
- mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +263 -0
- mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/qdrant_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/qdrant_handler/connection_args.py +75 -0
- mindsdb/integrations/handlers/qdrant_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +402 -0
- mindsdb/integrations/handlers/qdrant_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/questdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/questdb_handler/icon.svg +25 -0
- mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +72 -0
- mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/questdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +35 -0
- mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/quickbooks_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/quickbooks_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
- mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +374 -0
- mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rag_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/rag_handler/exceptions.py +26 -0
- mindsdb/integrations/handlers/rag_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/rag_handler/ingest.py +185 -0
- mindsdb/integrations/handlers/rag_handler/rag.py +147 -0
- mindsdb/integrations/handlers/rag_handler/rag_handler.py +144 -0
- mindsdb/integrations/handlers/rag_handler/requirements.txt +6 -0
- mindsdb/integrations/handlers/rag_handler/settings.py +479 -0
- mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/ray_serve_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/ray_serve_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +66 -0
- mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/reddit_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/reddit_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
- mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +195 -0
- mindsdb/integrations/handlers/reddit_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/redshift_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/redshift_handler/connection_args.py +58 -0
- mindsdb/integrations/handlers/redshift_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +69 -0
- mindsdb/integrations/handlers/redshift_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +154 -0
- mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/replicate_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
- mindsdb/integrations/handlers/replicate_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +162 -0
- mindsdb/integrations/handlers/replicate_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +6 -0
- mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
- mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +201 -0
- mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/rockset_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/rockset_handler/connection_args.py +45 -0
- mindsdb/integrations/handlers/rockset_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/rockset_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +11 -0
- mindsdb/integrations/handlers/rockset_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
- mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +32 -0
- mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/s3_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/s3_handler/connection_args.py +47 -0
- mindsdb/integrations/handlers/s3_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/s3_handler/s3_handler.py +454 -0
- mindsdb/integrations/handlers/s3_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +37 -0
- mindsdb/integrations/handlers/salesforce_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/salesforce_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/salesforce_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/salesforce_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/salesforce_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/salesforce_handler/salesforce_handler.py +180 -0
- mindsdb/integrations/handlers/salesforce_handler/salesforce_tables.py +129 -0
- mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
- mindsdb/integrations/handlers/sap_erp_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
- mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
- mindsdb/integrations/handlers/sap_erp_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/scylla_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/scylla_handler/connection_args.py +50 -0
- mindsdb/integrations/handlers/scylla_handler/icon.svg +17 -0
- mindsdb/integrations/handlers/scylla_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +205 -0
- mindsdb/integrations/handlers/scylla_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +38 -0
- mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sendinblue_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sendinblue_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
- mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +276 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/sentence_transformers_handler.py +75 -0
- mindsdb/integrations/handlers/sentence_transformers_handler/settings.py +12 -0
- mindsdb/integrations/handlers/serpstack_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/serpstack_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/serpstack_handler/icon.svg +86 -0
- mindsdb/integrations/handlers/serpstack_handler/serpstack_handler.py +123 -0
- mindsdb/integrations/handlers/serpstack_handler/serpstack_tables.py +260 -0
- mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sharepoint_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/sharepoint_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +579 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
- mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +581 -0
- mindsdb/integrations/handlers/sharepoint_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +53 -0
- mindsdb/integrations/handlers/sharepoint_handler/utils.py +163 -0
- mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sheets_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sheets_handler/connection_args.py +20 -0
- mindsdb/integrations/handlers/sheets_handler/icon.svg +55 -0
- mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +176 -0
- mindsdb/integrations/handlers/sheets_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +33 -0
- mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/shopify_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/shopify_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
- mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +1083 -0
- mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/singlestore_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/singlestore_handler/icon.svg +16 -0
- mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +42 -0
- mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/slack_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/slack_handler/connection_args.py +26 -0
- mindsdb/integrations/handlers/slack_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/slack_handler/slack_handler.py +339 -0
- mindsdb/integrations/handlers/slack_handler/slack_tables.py +718 -0
- mindsdb/integrations/handlers/slack_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +27 -0
- mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/snowflake_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/snowflake_handler/connection_args.py +63 -0
- mindsdb/integrations/handlers/snowflake_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/snowflake_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +280 -0
- mindsdb/integrations/handlers/snowflake_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +230 -0
- mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/solace_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/solace_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/solace_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
- mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/solr_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/solr_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/solr_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/solr_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/solr_handler/solr_handler.py +176 -0
- mindsdb/integrations/handlers/solr_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +38 -0
- mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/spacy_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/spacy_handler/icon.svg +3 -0
- mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
- mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqlany_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqlany_handler/connection_args.py +46 -0
- mindsdb/integrations/handlers/sqlany_handler/icon.svg +13 -0
- mindsdb/integrations/handlers/sqlany_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +179 -0
- mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqlite_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqlite_handler/connection_args.py +16 -0
- mindsdb/integrations/handlers/sqlite_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +184 -0
- mindsdb/integrations/handlers/sqlite_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +32 -0
- mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/sqreamdb_handler/connection_args.py +48 -0
- mindsdb/integrations/handlers/sqreamdb_handler/icon.svg +21 -0
- mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +154 -0
- mindsdb/integrations/handlers/sqreamdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +45 -0
- mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/stabilityai_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/stabilityai_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
- mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +172 -0
- mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/starrocks_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/starrocks_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
- mindsdb/integrations/handlers/starrocks_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +56 -0
- mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/statsforecast_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/statsforecast_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +1 -0
- mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +192 -0
- mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/strapi_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/strapi_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
- mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +131 -0
- mindsdb/integrations/handlers/strapi_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
- mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/strava_handler/icon.svg +12 -0
- mindsdb/integrations/handlers/strava_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
- mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
- mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/stripe_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/stripe_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/stripe_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
- mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
- mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/supabase_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/supabase_handler/icon.svg +15 -0
- mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
- mindsdb/integrations/handlers/supabase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +46 -0
- mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/surrealdb_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/surrealdb_handler/connection_args.py +52 -0
- mindsdb/integrations/handlers/surrealdb_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +196 -0
- mindsdb/integrations/handlers/surrealdb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +57 -0
- mindsdb/integrations/handlers/surrealdb_handler/utils/__init__.py +0 -0
- mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +20 -0
- mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/symbl_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/symbl_handler/connection_args.py +25 -0
- mindsdb/integrations/handlers/symbl_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +106 -0
- mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
- mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tdengine_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/tdengine_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/tdengine_handler/icon.svg +59 -0
- mindsdb/integrations/handlers/tdengine_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +146 -0
- mindsdb/integrations/handlers/tdengine_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +48 -0
- mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/teradata_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/teradata_handler/connection_args.py +39 -0
- mindsdb/integrations/handlers/teradata_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/teradata_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +245 -0
- mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tidb_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/tidb_handler/connection_args.py +36 -0
- mindsdb/integrations/handlers/tidb_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/tidb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +45 -0
- mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +11 -0
- mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/timegpt_handler/__init__.py +18 -0
- mindsdb/integrations/handlers/timegpt_handler/icon.svg +5 -0
- mindsdb/integrations/handlers/timegpt_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +205 -0
- mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/timescaledb_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/timescaledb_handler/icon.svg +9 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +47 -0
- mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
- mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tpot_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/tpot_handler/icon.png +0 -0
- mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +80 -0
- mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/trino_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/trino_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/trino_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +48 -0
- mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +12 -0
- mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
- mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +215 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
- mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +477 -0
- mindsdb/integrations/handlers/twelve_labs_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twelve_labs_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/twelve_labs_handler/icon.svg +7 -0
- mindsdb/integrations/handlers/twelve_labs_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/twelve_labs_handler/settings.py +271 -0
- mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_api_client.py +567 -0
- mindsdb/integrations/handlers/twelve_labs_handler/twelve_labs_handler.py +285 -0
- mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twilio_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/twilio_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/twilio_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
- mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/twitter_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/twitter_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
- mindsdb/integrations/handlers/unify_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/unify_handler/__init__.py +22 -0
- mindsdb/integrations/handlers/unify_handler/creation_args.py +14 -0
- mindsdb/integrations/handlers/unify_handler/icon.svg +25 -0
- mindsdb/integrations/handlers/unify_handler/model_using_args.py +5 -0
- mindsdb/integrations/handlers/unify_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/unify_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/unify_handler/tests/test_unify_handler.py +60 -0
- mindsdb/integrations/handlers/unify_handler/unify_handler.py +67 -0
- mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vertex_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/vertex_handler/icon.png +0 -0
- mindsdb/integrations/handlers/vertex_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/vertex_handler/vertex_client.py +95 -0
- mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
- mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vertica_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/vertica_handler/connection_args.py +41 -0
- mindsdb/integrations/handlers/vertica_handler/icon.svg +8 -0
- mindsdb/integrations/handlers/vertica_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/vertica_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +53 -0
- mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +160 -0
- mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/vitess_handler/__init__.py +20 -0
- mindsdb/integrations/handlers/vitess_handler/icon.svg +23 -0
- mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/vitess_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +56 -0
- mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
- mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/weaviate_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/weaviate_handler/connection_args.py +29 -0
- mindsdb/integrations/handlers/weaviate_handler/icon.svg +197 -0
- mindsdb/integrations/handlers/weaviate_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +652 -0
- mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/web_handler/__init__.py +24 -0
- mindsdb/integrations/handlers/web_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/web_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +343 -0
- mindsdb/integrations/handlers/web_handler/web_handler.py +91 -0
- mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/webz_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/webz_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/webz_handler/requirements.txt +3 -0
- mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
- mindsdb/integrations/handlers/webz_handler/webz_tables.py +218 -0
- mindsdb/integrations/handlers/whatsapp_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/whatsapp_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/whatsapp_handler/icon.svg +19 -0
- mindsdb/integrations/handlers/whatsapp_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/whatsapp_handler/whatsapp_handler.py +420 -0
- mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/writer_handler/__init__.py +30 -0
- mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
- mindsdb/integrations/handlers/writer_handler/icon.svg +10 -0
- mindsdb/integrations/handlers/writer_handler/ingest.py +11 -0
- mindsdb/integrations/handlers/writer_handler/rag.py +14 -0
- mindsdb/integrations/handlers/writer_handler/requirements.txt +4 -0
- mindsdb/integrations/handlers/writer_handler/settings.py +86 -0
- mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
- mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/xata_handler/__init__.py +29 -0
- mindsdb/integrations/handlers/xata_handler/connection_args.py +35 -0
- mindsdb/integrations/handlers/xata_handler/icon.svg +29 -0
- mindsdb/integrations/handlers/xata_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/xata_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/xata_handler/xata_handler.py +347 -0
- mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
- mindsdb/integrations/handlers/youtube_handler/icon.svg +11 -0
- mindsdb/integrations/handlers/youtube_handler/requirements.txt +2 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
- mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +448 -0
- mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/yugabyte_handler/__init__.py +19 -0
- mindsdb/integrations/handlers/yugabyte_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/yugabyte_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +49 -0
- mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
- mindsdb/integrations/handlers/zendesk_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zendesk_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/zendesk_handler/connection_args.py +33 -0
- mindsdb/integrations/handlers/zendesk_handler/icon.svg +1 -0
- mindsdb/integrations/handlers/zendesk_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/zendesk_handler/zendesk_handler.py +89 -0
- mindsdb/integrations/handlers/zendesk_handler/zendesk_tables.py +463 -0
- mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +28 -0
- mindsdb/integrations/handlers/zipcodebase_handler/connection_args.py +18 -0
- mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +4 -0
- mindsdb/integrations/handlers/zipcodebase_handler/tests/__init__.py +0 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +67 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +107 -0
- mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
- mindsdb/integrations/handlers/zotero_handler/__about__.py +9 -0
- mindsdb/integrations/handlers/zotero_handler/__init__.py +21 -0
- mindsdb/integrations/handlers/zotero_handler/icon.svg +102 -0
- mindsdb/integrations/handlers/zotero_handler/requirements.txt +1 -0
- mindsdb/integrations/handlers/zotero_handler/zotero_handler.py +109 -0
- mindsdb/integrations/handlers/zotero_handler/zotero_tables.py +157 -0
- mindsdb/integrations/libs/__init__.py +3 -0
- mindsdb/integrations/libs/api_handler.py +436 -0
- mindsdb/integrations/libs/api_handler_exceptions.py +18 -0
- mindsdb/integrations/libs/base.py +355 -0
- mindsdb/integrations/libs/const.py +23 -0
- mindsdb/integrations/libs/llm/__init__.py +0 -0
- mindsdb/integrations/libs/llm/config.py +106 -0
- mindsdb/integrations/libs/llm/utils.py +603 -0
- mindsdb/integrations/libs/ml_exec_base.py +453 -0
- mindsdb/integrations/libs/ml_handler_process/__init__.py +8 -0
- mindsdb/integrations/libs/ml_handler_process/create_engine_process.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/create_validation_process.py +14 -0
- mindsdb/integrations/libs/ml_handler_process/describe_process.py +117 -0
- mindsdb/integrations/libs/ml_handler_process/func_call_process.py +26 -0
- mindsdb/integrations/libs/ml_handler_process/handlers_cacher.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/learn_process.py +156 -0
- mindsdb/integrations/libs/ml_handler_process/predict_process.py +35 -0
- mindsdb/integrations/libs/ml_handler_process/update_engine_process.py +28 -0
- mindsdb/integrations/libs/ml_handler_process/update_process.py +27 -0
- mindsdb/integrations/libs/process_cache.py +430 -0
- mindsdb/integrations/libs/realtime_chat_handler.py +33 -0
- mindsdb/integrations/libs/response.py +95 -0
- mindsdb/integrations/libs/storage_handler.py +88 -0
- mindsdb/integrations/libs/vectordatabase_handler.py +534 -0
- mindsdb/integrations/utilities/__init__.py +0 -0
- mindsdb/integrations/utilities/datasets/__init__.py +0 -0
- mindsdb/integrations/utilities/datasets/dataset.py +73 -0
- mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +21 -0
- mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +106 -0
- mindsdb/integrations/utilities/date_utils.py +79 -0
- mindsdb/integrations/utilities/handler_utils.py +70 -0
- mindsdb/integrations/utilities/handlers/__init__.py +0 -0
- mindsdb/integrations/utilities/handlers/api_utilities/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/api_utilities/microsoft/ms_graph_api_utilities.py +138 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/__init__.py +2 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/exceptions.py +11 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/__init__.py +2 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_service_account_oauth_utilities.py +59 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/google/google_user_oauth_utilities.py +108 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/auth_utilities/microsoft/ms_graph_api_auth_utilities.py +128 -0
- mindsdb/integrations/utilities/handlers/query_utilities/__init__.py +4 -0
- mindsdb/integrations/utilities/handlers/query_utilities/base_query_utilities.py +63 -0
- mindsdb/integrations/utilities/handlers/query_utilities/delete_query_utilities.py +44 -0
- mindsdb/integrations/utilities/handlers/query_utilities/exceptions.py +17 -0
- mindsdb/integrations/utilities/handlers/query_utilities/insert_query_utilities.py +71 -0
- mindsdb/integrations/utilities/handlers/query_utilities/select_query_utilities.py +134 -0
- mindsdb/integrations/utilities/handlers/query_utilities/update_query_utilities.py +67 -0
- mindsdb/integrations/utilities/handlers/validation_utilities/__init__.py +1 -0
- mindsdb/integrations/utilities/handlers/validation_utilities/parameter_validation_utilities.py +18 -0
- mindsdb/integrations/utilities/install.py +134 -0
- mindsdb/integrations/utilities/query_traversal.py +239 -0
- mindsdb/integrations/utilities/rag/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/chains/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/chains/map_reduce_summarizer_chain.py +218 -0
- mindsdb/integrations/utilities/rag/config_loader.py +77 -0
- mindsdb/integrations/utilities/rag/loaders/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/loaders/file_loader.py +44 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/MDBVectorStore.py +54 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/pgvector.py +84 -0
- mindsdb/integrations/utilities/rag/loaders/vector_store_loader/vector_store_loader.py +60 -0
- mindsdb/integrations/utilities/rag/pipelines/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/pipelines/rag.py +253 -0
- mindsdb/integrations/utilities/rag/rag_pipeline_builder.py +83 -0
- mindsdb/integrations/utilities/rag/rerankers/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/rerankers/reranker_compressor.py +156 -0
- mindsdb/integrations/utilities/rag/retrievers/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/retrievers/auto_retriever.py +117 -0
- mindsdb/integrations/utilities/rag/retrievers/base.py +10 -0
- mindsdb/integrations/utilities/rag/retrievers/multi_vector_retriever.py +101 -0
- mindsdb/integrations/utilities/rag/retrievers/sql_retriever.py +149 -0
- mindsdb/integrations/utilities/rag/settings.py +511 -0
- mindsdb/integrations/utilities/rag/splitters/__init__.py +0 -0
- mindsdb/integrations/utilities/rag/splitters/file_splitter.py +132 -0
- mindsdb/integrations/utilities/rag/utils.py +52 -0
- mindsdb/integrations/utilities/rag/vector_store.py +99 -0
- mindsdb/integrations/utilities/sql_utils.py +224 -0
- mindsdb/integrations/utilities/test_utils.py +30 -0
- mindsdb/integrations/utilities/time_series_utils.py +191 -0
- mindsdb/integrations/utilities/utils.py +32 -0
- mindsdb/interfaces/__init__.py +1 -0
- mindsdb/interfaces/agents/__init__.py +0 -0
- mindsdb/interfaces/agents/agents_controller.py +435 -0
- mindsdb/interfaces/agents/callback_handlers.py +130 -0
- mindsdb/interfaces/agents/constants.py +179 -0
- mindsdb/interfaces/agents/langchain_agent.py +676 -0
- mindsdb/interfaces/agents/langfuse_callback_handler.py +163 -0
- mindsdb/interfaces/agents/mindsdb_chat_model.py +196 -0
- mindsdb/interfaces/agents/mindsdb_database_agent.py +54 -0
- mindsdb/interfaces/agents/safe_output_parser.py +51 -0
- mindsdb/interfaces/chatbot/__init__.py +1 -0
- mindsdb/interfaces/chatbot/chatbot_controller.py +409 -0
- mindsdb/interfaces/chatbot/chatbot_executor.py +226 -0
- mindsdb/interfaces/chatbot/chatbot_task.py +174 -0
- mindsdb/interfaces/chatbot/memory.py +223 -0
- mindsdb/interfaces/chatbot/model_executor.py +107 -0
- mindsdb/interfaces/chatbot/polling.py +233 -0
- mindsdb/interfaces/chatbot/types.py +38 -0
- mindsdb/interfaces/database/__init__.py +0 -0
- mindsdb/interfaces/database/database.py +122 -0
- mindsdb/interfaces/database/integrations.py +931 -0
- mindsdb/interfaces/database/log.py +297 -0
- mindsdb/interfaces/database/projects.py +397 -0
- mindsdb/interfaces/database/views.py +139 -0
- mindsdb/interfaces/file/__init__.py +0 -0
- mindsdb/interfaces/file/file_controller.py +146 -0
- mindsdb/interfaces/functions/__init__.py +0 -0
- mindsdb/interfaces/functions/controller.py +207 -0
- mindsdb/interfaces/jobs/__init__.py +0 -0
- mindsdb/interfaces/jobs/jobs_controller.py +549 -0
- mindsdb/interfaces/jobs/scheduler.py +143 -0
- mindsdb/interfaces/knowledge_base/__init__.py +0 -0
- mindsdb/interfaces/knowledge_base/controller.py +899 -0
- mindsdb/interfaces/knowledge_base/preprocessing/__init__.py +0 -0
- mindsdb/interfaces/knowledge_base/preprocessing/constants.py +13 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_loader.py +176 -0
- mindsdb/interfaces/knowledge_base/preprocessing/document_preprocessor.py +401 -0
- mindsdb/interfaces/knowledge_base/preprocessing/models.py +108 -0
- mindsdb/interfaces/model/__init__.py +0 -0
- mindsdb/interfaces/model/functions.py +155 -0
- mindsdb/interfaces/model/model_controller.py +488 -0
- mindsdb/interfaces/query_context/__init__.py +0 -0
- mindsdb/interfaces/query_context/context_controller.py +289 -0
- mindsdb/interfaces/query_context/last_query.py +266 -0
- mindsdb/interfaces/skills/__init__.py +1 -0
- mindsdb/interfaces/skills/custom/__init__.py +0 -0
- mindsdb/interfaces/skills/custom/text2sql/__init__.py +0 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_tool.py +37 -0
- mindsdb/interfaces/skills/custom/text2sql/mindsdb_sql_toolkit.py +88 -0
- mindsdb/interfaces/skills/retrieval_tool.py +110 -0
- mindsdb/interfaces/skills/skill_tool.py +255 -0
- mindsdb/interfaces/skills/skills_controller.py +175 -0
- mindsdb/interfaces/skills/sql_agent.py +256 -0
- mindsdb/interfaces/storage/__init__.py +1 -0
- mindsdb/interfaces/storage/db.py +597 -0
- mindsdb/interfaces/storage/fs.py +631 -0
- mindsdb/interfaces/storage/json.py +97 -0
- mindsdb/interfaces/storage/model_fs.py +282 -0
- mindsdb/interfaces/tabs/__init__.py +0 -0
- mindsdb/interfaces/tabs/tabs_controller.py +291 -0
- mindsdb/interfaces/tasks/__init__.py +0 -0
- mindsdb/interfaces/tasks/task.py +16 -0
- mindsdb/interfaces/tasks/task_monitor.py +150 -0
- mindsdb/interfaces/tasks/task_thread.py +55 -0
- mindsdb/interfaces/triggers/__init__.py +0 -0
- mindsdb/interfaces/triggers/trigger_task.py +95 -0
- mindsdb/interfaces/triggers/triggers_controller.py +167 -0
- mindsdb/metrics/__init__.py +0 -0
- mindsdb/metrics/metrics.py +50 -0
- mindsdb/metrics/server.py +26 -0
- mindsdb/migrations/__init__.py +0 -0
- mindsdb/migrations/alembic.ini +65 -0
- mindsdb/migrations/env.py +87 -0
- mindsdb/migrations/migrate.py +53 -0
- mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
- mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +38 -0
- mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +256 -0
- mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +156 -0
- mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +106 -0
- mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +29 -0
- mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +33 -0
- mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +42 -0
- mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +36 -0
- mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +81 -0
- mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +69 -0
- mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +74 -0
- mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +59 -0
- mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +90 -0
- mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +115 -0
- mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +66 -0
- mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +106 -0
- mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +34 -0
- mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +56 -0
- mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +42 -0
- mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +36 -0
- mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +33 -0
- mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +35 -0
- mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +46 -0
- mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +41 -0
- mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +28 -0
- mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +35 -0
- mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +60 -0
- mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +54 -0
- mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +38 -0
- mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +26 -0
- mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +32 -0
- mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +35 -0
- mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +29 -0
- mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +82 -0
- mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +28 -0
- mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +54 -0
- mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +38 -0
- mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
- mindsdb/migrations/versions/2023-12-25_4b3c9d63e89c_predictor_index.py +44 -0
- mindsdb/migrations/versions/2024-02-02_5a5c49313e52_job_condition.py +32 -0
- mindsdb/migrations/versions/2024-02-12_9461892bd889_llm_log.py +44 -0
- mindsdb/migrations/versions/2024-04-25_2958416fbe75_drop_semaphor.py +36 -0
- mindsdb/migrations/versions/2024-06-06_cbedc4968d5d_store_llm_data.py +34 -0
- mindsdb/migrations/versions/2024-07-09_bfc6f44f5bc9_agent_model_optional.py +50 -0
- mindsdb/migrations/versions/2024-07-19_45eb2eb61f70_add_provider_to_agent.py +47 -0
- mindsdb/migrations/versions/2024-08-12_8e17ff6b75e9_agents_deleted_at.py +42 -0
- mindsdb/migrations/versions/2024-10-07_6c57ed39a82b_added_webhook_token_to_chat_bots.py +27 -0
- mindsdb/migrations/versions/2024-11-15_9d559f68d535_add_llm_log_columns.py +41 -0
- mindsdb/migrations/versions/2024-11-19_0f89b523f346_agent_skills_parameters.py +28 -0
- mindsdb/migrations/versions/2024-11-28_a8a3fac369e7_llm_log_json_in_out.py +103 -0
- mindsdb/migrations/versions/2024-11-29_f6dc924079fa_predictor_training_metadata.py +44 -0
- mindsdb/migrations/versions/__init__.py +0 -0
- mindsdb/utilities/__init__.py +0 -0
- mindsdb/utilities/auth.py +73 -0
- mindsdb/utilities/cache.py +282 -0
- mindsdb/utilities/config.py +530 -0
- mindsdb/utilities/context.py +57 -0
- mindsdb/utilities/context_executor.py +59 -0
- mindsdb/utilities/exception.py +29 -0
- mindsdb/utilities/fs.py +153 -0
- mindsdb/utilities/functions.py +197 -0
- mindsdb/utilities/hooks/__init__.py +34 -0
- mindsdb/utilities/hooks/profiling.py +74 -0
- mindsdb/utilities/json_encoder.py +33 -0
- mindsdb/utilities/log.py +97 -0
- mindsdb/utilities/log_controller.py +39 -0
- mindsdb/utilities/ml_task_queue/__init__.py +57 -0
- mindsdb/utilities/ml_task_queue/base.py +14 -0
- mindsdb/utilities/ml_task_queue/const.py +26 -0
- mindsdb/utilities/ml_task_queue/consumer.py +252 -0
- mindsdb/utilities/ml_task_queue/producer.py +81 -0
- mindsdb/utilities/ml_task_queue/task.py +82 -0
- mindsdb/utilities/ml_task_queue/utils.py +124 -0
- mindsdb/utilities/otel.py +72 -0
- mindsdb/utilities/profiler/__init__.py +19 -0
- mindsdb/utilities/profiler/profiler.py +144 -0
- mindsdb/utilities/ps.py +78 -0
- mindsdb/utilities/render/__init__.py +0 -0
- mindsdb/utilities/render/sqlalchemy_render.py +831 -0
- mindsdb/utilities/security.py +54 -0
- mindsdb/utilities/sentry.py +46 -0
- mindsdb/utilities/telemetry.py +44 -0
- mindsdb/utilities/wizards.py +49 -0
- MindsDB-1.2.9.dist-info/LICENSE +0 -21
- MindsDB-1.2.9.dist-info/METADATA +0 -111
- MindsDB-1.2.9.dist-info/RECORD +0 -55
- mindsdb/config/__init__.py +0 -32
- mindsdb/config/helpers.py +0 -21
- mindsdb/external_libs/stats.py +0 -61
- mindsdb/libs/__init__.py +0 -6
- mindsdb/libs/backends/lightwood.py +0 -113
- mindsdb/libs/backends/ludwig.py +0 -507
- mindsdb/libs/constants/mindsdb.py +0 -81
- mindsdb/libs/controllers/predictor.py +0 -592
- mindsdb/libs/controllers/transaction.py +0 -254
- mindsdb/libs/data_sources/file_ds.py +0 -196
- mindsdb/libs/data_types/data_source.py +0 -59
- mindsdb/libs/data_types/mindsdb_logger.py +0 -127
- mindsdb/libs/data_types/probability_evaluation.py +0 -56
- mindsdb/libs/data_types/transaction_data.py +0 -15
- mindsdb/libs/data_types/transaction_output_data.py +0 -29
- mindsdb/libs/data_types/transaction_output_row.py +0 -35
- mindsdb/libs/helpers/explain_prediction.py +0 -114
- mindsdb/libs/helpers/file_helpers.py +0 -66
- mindsdb/libs/helpers/general_helpers.py +0 -276
- mindsdb/libs/helpers/multi_data_source.py +0 -28
- mindsdb/libs/helpers/parser.py +0 -161
- mindsdb/libs/helpers/probabilistic_validator.py +0 -198
- mindsdb/libs/helpers/sqlite_helpers.py +0 -33
- mindsdb/libs/helpers/text_helpers.py +0 -79
- mindsdb/libs/helpers/train_helpers.py +0 -4
- mindsdb/libs/phases/base_module.py +0 -62
- mindsdb/libs/phases/data_extractor/data_extractor.py +0 -233
- mindsdb/libs/phases/data_transformer/data_transformer.py +0 -103
- mindsdb/libs/phases/model_analyzer/helpers/column_evaluator.py +0 -120
- mindsdb/libs/phases/model_analyzer/model_analyzer.py +0 -119
- mindsdb/libs/phases/model_interface/model_interface.py +0 -33
- mindsdb/libs/phases/stats_generator/scores.py +0 -377
- mindsdb/libs/phases/stats_generator/stats_generator.py +0 -694
- mindsdb/scraps.py +0 -133
- {MindsDB-1.2.9.dist-info → MindsDB-24.12.4.0.dist-info}/top_level.txt +0 -0
- /mindsdb/{external_libs → api}/__init__.py +0 -0
- /mindsdb/{libs/backends → api/common}/__init__.py +0 -0
- /mindsdb/{libs/constants → api/executor/data_types}/__init__.py +0 -0
- /mindsdb/{libs/controllers → api/executor/datahub/classes}/__init__.py +0 -0
- /mindsdb/{libs/data_sources → api/executor/sql_query}/__init__.py +0 -0
- /mindsdb/{libs/data_types → api/executor/utilities}/__init__.py +0 -0
- /mindsdb/{libs/helpers → api/http}/__init__.py +0 -0
- /mindsdb/{libs/phases → api/http/namespaces}/__init__.py +0 -0
- /mindsdb/{libs/phases/data_extractor → api/http/namespaces/configs}/__init__.py +0 -0
- /mindsdb/{libs/phases/data_transformer → api/mongo}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_analyzer → api/mongo/utilities}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_analyzer/helpers → api/mysql}/__init__.py +0 -0
- /mindsdb/{libs/phases/model_interface → api/mysql/mysql_proxy}/__init__.py +0 -0
- /mindsdb/{libs/phases/stats_generator → api/mysql/mysql_proxy/classes}/__init__.py +0 -0
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
from typing import Any, Dict, Text
|
|
2
|
+
|
|
3
|
+
from hdbcli import dbapi
|
|
4
|
+
from hdbcli.dbapi import Error, ProgrammingError
|
|
5
|
+
from mindsdb_sql_parser.ast.base import ASTNode
|
|
6
|
+
from mindsdb.utilities.render.sqlalchemy_render import SqlalchemyRender
|
|
7
|
+
from pandas import DataFrame
|
|
8
|
+
import sqlalchemy_hana.dialect as hana_dialect
|
|
9
|
+
|
|
10
|
+
from mindsdb.integrations.libs.base import DatabaseHandler
|
|
11
|
+
from mindsdb.integrations.libs.response import (
|
|
12
|
+
HandlerStatusResponse as StatusResponse,
|
|
13
|
+
HandlerResponse as Response,
|
|
14
|
+
RESPONSE_TYPE
|
|
15
|
+
)
|
|
16
|
+
from mindsdb.utilities import log
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
logger = log.getLogger(__name__)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class HanaHandler(DatabaseHandler):
|
|
23
|
+
"""
|
|
24
|
+
This handler handles the connection and execution of SQL statements on SAP HANA.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
name = 'hana'
|
|
28
|
+
|
|
29
|
+
def __init__(self, name: Text, connection_data: Dict, **kwargs: Any) -> None:
|
|
30
|
+
"""
|
|
31
|
+
Initializes the handler.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
name (Text): The name of the handler instance.
|
|
35
|
+
connection_data (Dict): The connection data required to connect to the SAP HANA database.
|
|
36
|
+
kwargs: Arbitrary keyword arguments.
|
|
37
|
+
"""
|
|
38
|
+
super().__init__(name)
|
|
39
|
+
self.connection_data = connection_data
|
|
40
|
+
self.kwargs = kwargs
|
|
41
|
+
|
|
42
|
+
self.connection = None
|
|
43
|
+
self.is_connected = False
|
|
44
|
+
|
|
45
|
+
def __del__(self):
|
|
46
|
+
"""
|
|
47
|
+
Closes the connection when the handler instance is deleted.
|
|
48
|
+
"""
|
|
49
|
+
if self.is_connected is True:
|
|
50
|
+
self.disconnect()
|
|
51
|
+
|
|
52
|
+
def connect(self) -> dbapi.Connection:
|
|
53
|
+
"""
|
|
54
|
+
Establishes a connection to the SAP HANA database.
|
|
55
|
+
|
|
56
|
+
Raises:
|
|
57
|
+
ValueError: If the expected connection parameters are not provided.
|
|
58
|
+
hdbcli.dbapi.Error: If an error occurs while connecting to the SAP HANA database.
|
|
59
|
+
|
|
60
|
+
Returns:
|
|
61
|
+
hdbcli.dbapi.Connection: A connection object to the SAP HANA database.
|
|
62
|
+
"""
|
|
63
|
+
if self.is_connected is True:
|
|
64
|
+
return self.connection
|
|
65
|
+
|
|
66
|
+
# Mandatory connection parameters.
|
|
67
|
+
if not all(key in self.connection_data for key in ['address', 'port', 'user', 'password']):
|
|
68
|
+
raise ValueError('Required parameters (address, port, user, password) must be provided.')
|
|
69
|
+
|
|
70
|
+
config = {
|
|
71
|
+
'address': self.connection_data['address'],
|
|
72
|
+
'port': self.connection_data['port'],
|
|
73
|
+
'user': self.connection_data['user'],
|
|
74
|
+
'password': self.connection_data['password'],
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
# Optional connection parameters.
|
|
78
|
+
if 'database' in self.connection_data:
|
|
79
|
+
config['databaseName'] = self.connection_data['database']
|
|
80
|
+
|
|
81
|
+
if 'schema' in self.connection_data:
|
|
82
|
+
config['currentSchema'] = self.connection_data['schema']
|
|
83
|
+
|
|
84
|
+
if 'encrypt' in self.connection_data:
|
|
85
|
+
config['encrypt'] = self.connection_data['encrypt']
|
|
86
|
+
|
|
87
|
+
try:
|
|
88
|
+
self.connection = dbapi.connect(
|
|
89
|
+
**config
|
|
90
|
+
)
|
|
91
|
+
self.is_connected = True
|
|
92
|
+
return self.connection
|
|
93
|
+
except Error as known_error:
|
|
94
|
+
logger.error(f'Error connecting to SAP HANA, {known_error}!')
|
|
95
|
+
raise
|
|
96
|
+
except Exception as unknown_error:
|
|
97
|
+
logger.error(f'Unknown error connecting to Teradata, {unknown_error}!')
|
|
98
|
+
raise
|
|
99
|
+
|
|
100
|
+
def disconnect(self) -> None:
|
|
101
|
+
"""
|
|
102
|
+
Closes the connection to the SAP HANA database if it's currently open.
|
|
103
|
+
"""
|
|
104
|
+
if self.is_connected is True:
|
|
105
|
+
self.connection.close()
|
|
106
|
+
self.is_connected = False
|
|
107
|
+
|
|
108
|
+
def check_connection(self) -> StatusResponse:
|
|
109
|
+
"""
|
|
110
|
+
Checks the status of the connection to the SAP HANA database.
|
|
111
|
+
|
|
112
|
+
Returns:
|
|
113
|
+
StatusResponse: An object containing the success status and an error message if an error occurs.
|
|
114
|
+
"""
|
|
115
|
+
response = StatusResponse(False)
|
|
116
|
+
need_to_close = self.is_connected is False
|
|
117
|
+
|
|
118
|
+
try:
|
|
119
|
+
connection = self.connect()
|
|
120
|
+
with connection.cursor() as cur:
|
|
121
|
+
cur.execute('SELECT 1 FROM SYS.DUMMY')
|
|
122
|
+
response.success = True
|
|
123
|
+
except (Error, ProgrammingError, ValueError) as known_error:
|
|
124
|
+
logger.error(f'Connection check to SAP HANA failed, {known_error}!')
|
|
125
|
+
response.error_message = str(known_error)
|
|
126
|
+
except Exception as unknown_error:
|
|
127
|
+
logger.error(f'Connection check to SAP HANA failed due to an unknown error, {unknown_error}!')
|
|
128
|
+
response.error_message = str(unknown_error)
|
|
129
|
+
|
|
130
|
+
if response.success is True and need_to_close:
|
|
131
|
+
self.disconnect()
|
|
132
|
+
if response.success is False and self.is_connected is True:
|
|
133
|
+
self.is_connected = False
|
|
134
|
+
|
|
135
|
+
return response
|
|
136
|
+
|
|
137
|
+
def native_query(self, query: Text) -> Response:
|
|
138
|
+
"""
|
|
139
|
+
Executes a native SQL query on the SAP HANA database and returns the result.
|
|
140
|
+
|
|
141
|
+
Args:
|
|
142
|
+
query (Text): The SQL query to be executed.
|
|
143
|
+
|
|
144
|
+
Returns:
|
|
145
|
+
Response: A response object containing the result of the query or an error message.
|
|
146
|
+
"""
|
|
147
|
+
need_to_close = self.is_connected is False
|
|
148
|
+
|
|
149
|
+
connection = self.connect()
|
|
150
|
+
with connection.cursor() as cur:
|
|
151
|
+
try:
|
|
152
|
+
cur.execute(query)
|
|
153
|
+
if not cur.description:
|
|
154
|
+
response = Response(RESPONSE_TYPE.OK)
|
|
155
|
+
else:
|
|
156
|
+
result = cur.fetchall()
|
|
157
|
+
response = Response(
|
|
158
|
+
RESPONSE_TYPE.TABLE,
|
|
159
|
+
DataFrame(
|
|
160
|
+
result,
|
|
161
|
+
columns=[x[0] for x in cur.description]
|
|
162
|
+
)
|
|
163
|
+
)
|
|
164
|
+
connection.commit()
|
|
165
|
+
except ProgrammingError as programming_error:
|
|
166
|
+
logger.error(f'Error running query: {query} on {self.address}!')
|
|
167
|
+
response = Response(
|
|
168
|
+
RESPONSE_TYPE.ERROR,
|
|
169
|
+
error_code=0,
|
|
170
|
+
error_message=str(programming_error)
|
|
171
|
+
)
|
|
172
|
+
connection.rollback()
|
|
173
|
+
except Exception as unknown_error:
|
|
174
|
+
logger.error(f'Unknown error running query: {query} on {self.address}!')
|
|
175
|
+
response = Response(
|
|
176
|
+
RESPONSE_TYPE.ERROR,
|
|
177
|
+
error_code=0,
|
|
178
|
+
error_message=str(unknown_error)
|
|
179
|
+
)
|
|
180
|
+
connection.rollback()
|
|
181
|
+
|
|
182
|
+
if need_to_close is True:
|
|
183
|
+
self.disconnect()
|
|
184
|
+
|
|
185
|
+
return response
|
|
186
|
+
|
|
187
|
+
def query(self, query: ASTNode) -> Response:
|
|
188
|
+
"""
|
|
189
|
+
Executes a SQL query represented by an ASTNode on the SAP HANA database and retrieves the data (if any).
|
|
190
|
+
|
|
191
|
+
Args:
|
|
192
|
+
query (ASTNode): An ASTNode representing the SQL query to be executed.
|
|
193
|
+
|
|
194
|
+
Returns:
|
|
195
|
+
Response: The response from the `native_query` method, containing the result of the SQL query execution.
|
|
196
|
+
"""
|
|
197
|
+
renderer = SqlalchemyRender(hana_dialect.HANAHDBCLIDialect)
|
|
198
|
+
query_str = renderer.get_string(query, with_failback=True)
|
|
199
|
+
return self.native_query(query_str)
|
|
200
|
+
|
|
201
|
+
def get_tables(self) -> Response:
|
|
202
|
+
"""
|
|
203
|
+
Retrieves a list of all non-system tables in the SAP HANA database.
|
|
204
|
+
|
|
205
|
+
Returns:
|
|
206
|
+
Response: A response object containing a list of tables in the SAP HANA database.
|
|
207
|
+
"""
|
|
208
|
+
query = """
|
|
209
|
+
SELECT SCHEMA_NAME,
|
|
210
|
+
TABLE_NAME,
|
|
211
|
+
'BASE TABLE' AS TABLE_TYPE
|
|
212
|
+
FROM
|
|
213
|
+
SYS.TABLES
|
|
214
|
+
WHERE IS_SYSTEM_TABLE = 'FALSE'
|
|
215
|
+
AND IS_USER_DEFINED_TYPE = 'FALSE'
|
|
216
|
+
AND IS_TEMPORARY = 'FALSE'
|
|
217
|
+
|
|
218
|
+
UNION
|
|
219
|
+
|
|
220
|
+
SELECT SCHEMA_NAME,
|
|
221
|
+
VIEW_NAME AS TABLE_NAME,
|
|
222
|
+
'VIEW' AS TABLE_TYPE
|
|
223
|
+
FROM
|
|
224
|
+
SYS.VIEWS
|
|
225
|
+
WHERE SCHEMA_NAME <> 'SYS'
|
|
226
|
+
AND SCHEMA_NAME NOT LIKE '_SYS%'
|
|
227
|
+
"""
|
|
228
|
+
return self.native_query(query)
|
|
229
|
+
|
|
230
|
+
def get_columns(self, table_name: Text) -> Response:
|
|
231
|
+
"""
|
|
232
|
+
Retrieves column details for a specified table in the SAP HANA database.
|
|
233
|
+
|
|
234
|
+
Args:
|
|
235
|
+
table_name (Text): The name of the table for which to retrieve column information.
|
|
236
|
+
|
|
237
|
+
Raises:
|
|
238
|
+
ValueError: If the 'table_name' is not a valid string.
|
|
239
|
+
|
|
240
|
+
Returns:
|
|
241
|
+
Response: A response object containing the column details.
|
|
242
|
+
"""
|
|
243
|
+
if not table_name or not isinstance(table_name, str):
|
|
244
|
+
raise ValueError("Invalid table name provided.")
|
|
245
|
+
|
|
246
|
+
query = f"""
|
|
247
|
+
SELECT COLUMN_NAME AS Field,
|
|
248
|
+
DATA_TYPE_NAME AS Type
|
|
249
|
+
FROM SYS.TABLE_COLUMNS
|
|
250
|
+
WHERE TABLE_NAME = '{table_name}'
|
|
251
|
+
|
|
252
|
+
UNION ALL
|
|
253
|
+
|
|
254
|
+
SELECT COLUMN_NAME AS Field,
|
|
255
|
+
DATA_TYPE_NAME AS Type
|
|
256
|
+
FROM SYS.VIEW_COLUMNS
|
|
257
|
+
WHERE VIEW_NAME = '{table_name}'
|
|
258
|
+
"""
|
|
259
|
+
return self.native_query(query)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="21" viewBox="0 0 40 21" fill="none">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 21H19.988L39.5441 0.0257339H0V21Z" fill="url(#paint0_linear_146_444)"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.4673 4.19485H19.5561L19.5801 14.0515L16.1728 4.19485H12.7894L9.88602 12.4301C9.57408 10.3456 7.55849 9.625 5.9748 9.08456C4.91901 8.72427 3.81524 8.18383 3.81524 7.59191C3.81524 7.10294 4.41512 6.66544 5.56689 6.71691C6.35873 6.76838 7.03059 6.81985 8.42231 7.54044L9.76605 5.01838C8.5183 4.32353 6.79064 3.91177 5.35093 3.91177C3.69526 3.91177 2.30354 4.47794 1.46371 5.43015C0.863826 6.09927 0.551889 6.9228 0.527893 7.875C0.503898 9.16177 0.935812 10.0625 1.87162 10.7831C2.63947 11.4007 3.64727 11.7868 4.5111 12.0699C5.59088 12.4301 6.4787 12.739 6.45471 13.4081C6.45471 13.6397 6.35873 13.8713 6.19076 14.0515C5.92681 14.3603 5.5189 14.4632 4.94301 14.4632C3.83923 14.489 3.02339 14.3088 1.72765 13.4853L0.527893 16.0331C1.82363 16.8309 3.21536 17.2169 4.77504 17.2169H5.13497C6.5027 17.1912 7.60648 16.8309 8.4943 16.0846C8.54229 16.0331 8.59028 16.0074 8.63827 15.9559L8.4943 16.7794H11.7816L12.3815 15.1581C13.0054 15.3897 13.7013 15.5184 14.4691 15.5184C15.189 15.5184 15.8848 15.3897 16.5087 15.1838L16.9166 16.7794H22.8194L22.8434 13.0735H24.0912C27.1386 13.0735 28.9382 11.4265 28.9382 8.62133C28.9142 5.55882 27.1866 4.19485 23.4673 4.19485ZM14.4691 12.636C14.0132 12.636 13.5813 12.5588 13.2214 12.4044L14.4451 8.2353H14.4691L15.6929 12.4301C15.3089 12.5331 14.901 12.636 14.4691 12.636ZM23.6833 10.2169H22.8194V6.84559H23.6833C24.835 6.84559 25.7469 7.25735 25.7469 8.51838C25.7469 9.83088 24.835 10.2169 23.6833 10.2169Z" fill="white"/>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient id="paint0_linear_146_444" x1="19.772" y1="0.0257339" x2="19.772" y2="21" gradientUnits="userSpaceOnUse">
|
|
6
|
+
<stop stop-color="#00AEEF"/>
|
|
7
|
+
<stop offset="0.212" stop-color="#0097DC"/>
|
|
8
|
+
<stop offset="0.519" stop-color="#007CC5"/>
|
|
9
|
+
<stop offset="0.792" stop-color="#006CB8"/>
|
|
10
|
+
<stop offset="1" stop-color="#0066B3"/>
|
|
11
|
+
</linearGradient>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
__title__ = 'MindsDB Hive handler'
|
|
2
|
+
__package_name__ = 'mindsdb_hive_handler'
|
|
3
|
+
__version__ = '0.0.1'
|
|
4
|
+
__description__ = "MindsDB handler for Hive2"
|
|
5
|
+
__author__ = 'Biswadip Paul'
|
|
6
|
+
__github__ = 'https://github.com/mindsdb/mindsdb'
|
|
7
|
+
__pypi__ = 'https://pypi.org/project/mindsdb/'
|
|
8
|
+
__license__ = 'MIT'
|
|
9
|
+
__copyright__ = 'Copyright 2022- mindsdb'
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from mindsdb.integrations.libs.const import HANDLER_TYPE
|
|
2
|
+
|
|
3
|
+
from .__about__ import __version__ as version, __description__ as description
|
|
4
|
+
from .connection_args import connection_args, connection_args_example
|
|
5
|
+
try:
|
|
6
|
+
from .hive_handler import HiveHandler as Handler
|
|
7
|
+
import_error = None
|
|
8
|
+
except Exception as e:
|
|
9
|
+
Handler = None
|
|
10
|
+
import_error = e
|
|
11
|
+
|
|
12
|
+
title = 'Hive'
|
|
13
|
+
name = 'hive'
|
|
14
|
+
type = HANDLER_TYPE.DATA
|
|
15
|
+
icon_path = 'icon.svg'
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'Handler', 'version', 'name', 'type', 'title', 'description',
|
|
19
|
+
'connection_args', 'connection_args_example', 'import_error', 'icon_path'
|
|
20
|
+
]
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
from collections import OrderedDict
|
|
2
|
+
|
|
3
|
+
from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
connection_args = OrderedDict(
|
|
7
|
+
username={
|
|
8
|
+
'type': ARG_TYPE.STR,
|
|
9
|
+
'description': 'The username for the Apache Hive database.',
|
|
10
|
+
'required': False,
|
|
11
|
+
'label': 'Username'
|
|
12
|
+
},
|
|
13
|
+
password={
|
|
14
|
+
'type': ARG_TYPE.PWD,
|
|
15
|
+
'description': 'The password for the Apache Hive database.',
|
|
16
|
+
'secret': True,
|
|
17
|
+
'required': False,
|
|
18
|
+
'label': 'Password'
|
|
19
|
+
},
|
|
20
|
+
database={
|
|
21
|
+
'type': ARG_TYPE.STR,
|
|
22
|
+
'description': 'The name of the Apache Hive database to connect to.',
|
|
23
|
+
'required': True,
|
|
24
|
+
'label': 'Database'
|
|
25
|
+
},
|
|
26
|
+
host={
|
|
27
|
+
'type': ARG_TYPE.STR,
|
|
28
|
+
'description': 'The hostname, IP address, or URL of the Apache Hive server.. NOTE: use \'127.0.0.1\' instead of \'localhost\' to connect to local server.',
|
|
29
|
+
'required': True,
|
|
30
|
+
'label': 'Host'
|
|
31
|
+
},
|
|
32
|
+
port={
|
|
33
|
+
'type': ARG_TYPE.INT,
|
|
34
|
+
'description': 'The port number for connecting to the Apache Hive server. Default is `10000`.',
|
|
35
|
+
'required': False,
|
|
36
|
+
'label': 'Port'
|
|
37
|
+
},
|
|
38
|
+
auth={
|
|
39
|
+
'type': ARG_TYPE.STR,
|
|
40
|
+
'description': 'The authentication mechanism to use. Default is `CUSTOM`. Other options are `NONE`, `NOSASL`, `KERBEROS` and `LDAP`.',
|
|
41
|
+
'required': False,
|
|
42
|
+
'label': 'Authentication'
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
connection_args_example = OrderedDict(
|
|
47
|
+
host='127.0.0.1',
|
|
48
|
+
port='10000',
|
|
49
|
+
auth='CUSTOM',
|
|
50
|
+
user='root',
|
|
51
|
+
password='password',
|
|
52
|
+
database='database'
|
|
53
|
+
)
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
from typing import Text, Dict, Optional
|
|
2
|
+
|
|
3
|
+
from mindsdb.utilities.render.sqlalchemy_render import SqlalchemyRender
|
|
4
|
+
from mindsdb_sql_parser.ast.base import ASTNode
|
|
5
|
+
import pandas as pd
|
|
6
|
+
from pyhive import (hive, sqlalchemy_hive)
|
|
7
|
+
from pyhive.exc import OperationalError
|
|
8
|
+
from thrift.transport.TTransport import TTransportException
|
|
9
|
+
|
|
10
|
+
from mindsdb.integrations.libs.base import DatabaseHandler
|
|
11
|
+
from mindsdb.integrations.libs.response import (
|
|
12
|
+
HandlerStatusResponse as StatusResponse,
|
|
13
|
+
HandlerResponse as Response,
|
|
14
|
+
RESPONSE_TYPE
|
|
15
|
+
)
|
|
16
|
+
from mindsdb.utilities import log
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
logger = log.getLogger(__name__)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class HiveHandler(DatabaseHandler):
|
|
23
|
+
"""
|
|
24
|
+
This handler handles the connection and execution of SQL statements on Apache Hive.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
name = 'hive'
|
|
28
|
+
|
|
29
|
+
def __init__(self, name: Text, connection_data: Optional[Dict], **kwargs) -> None:
|
|
30
|
+
"""
|
|
31
|
+
Initializes the handler.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
name (Text): The name of the handler instance.
|
|
35
|
+
connection_data (Dict): The connection data required to connect to the Apache Hive server.
|
|
36
|
+
kwargs: Arbitrary keyword arguments.
|
|
37
|
+
"""
|
|
38
|
+
super().__init__(name)
|
|
39
|
+
self.connection_data = connection_data
|
|
40
|
+
self.kwargs = kwargs
|
|
41
|
+
|
|
42
|
+
self.connection = None
|
|
43
|
+
self.is_connected = False
|
|
44
|
+
|
|
45
|
+
def __del__(self) -> None:
|
|
46
|
+
"""
|
|
47
|
+
Closes the connection when the handler instance is deleted.
|
|
48
|
+
"""
|
|
49
|
+
if self.is_connected:
|
|
50
|
+
self.disconnect()
|
|
51
|
+
|
|
52
|
+
def connect(self) -> hive.Connection:
|
|
53
|
+
"""
|
|
54
|
+
Establishes a connection to the Apache Hive server.
|
|
55
|
+
|
|
56
|
+
Raises:
|
|
57
|
+
ValueError: If the expected connection parameters are not provided.
|
|
58
|
+
|
|
59
|
+
Returns:
|
|
60
|
+
hive.Connection: A connection object to the Apache Hive server.
|
|
61
|
+
"""
|
|
62
|
+
if self.is_connected:
|
|
63
|
+
return self.connection
|
|
64
|
+
|
|
65
|
+
# Mandatory connection parameters.
|
|
66
|
+
if not all(key in self.connection_data for key in ['host', 'database']):
|
|
67
|
+
raise ValueError('Required parameters (account, database) must be provided.')
|
|
68
|
+
|
|
69
|
+
config = {
|
|
70
|
+
'host': self.connection_data.get('host'),
|
|
71
|
+
'database': self.connection_data.get('database')
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
# Optional connection parameters.
|
|
75
|
+
optional_parameters = ['port', 'username', 'password']
|
|
76
|
+
for param in optional_parameters:
|
|
77
|
+
if param in self.connection_data:
|
|
78
|
+
config[param] = self.connection_data[param]
|
|
79
|
+
|
|
80
|
+
config['auth'] = self.connection_data.get('auth', 'CUSTOM').upper()
|
|
81
|
+
|
|
82
|
+
try:
|
|
83
|
+
self.connection = hive.Connection(**config)
|
|
84
|
+
self.is_connected = True
|
|
85
|
+
return self.connection
|
|
86
|
+
except (OperationalError, TTransportException, ValueError) as known_error:
|
|
87
|
+
logger.error(f'Error connecting to Hive {config["database"]}, {known_error}!')
|
|
88
|
+
raise
|
|
89
|
+
except Exception as unknown_error:
|
|
90
|
+
logger.error(f'Unknown error connecting to Hive {config["database"]}, {unknown_error}!')
|
|
91
|
+
raise
|
|
92
|
+
|
|
93
|
+
def disconnect(self) -> None:
|
|
94
|
+
"""
|
|
95
|
+
Closes the connection to the Apache Hive server if it's currently open.
|
|
96
|
+
"""
|
|
97
|
+
if self.is_connected is False:
|
|
98
|
+
return
|
|
99
|
+
|
|
100
|
+
self.connection.close()
|
|
101
|
+
self.is_connected = False
|
|
102
|
+
return
|
|
103
|
+
|
|
104
|
+
def check_connection(self) -> StatusResponse:
|
|
105
|
+
"""
|
|
106
|
+
Checks the status of the connection to the Apache Hive server.
|
|
107
|
+
|
|
108
|
+
Returns:
|
|
109
|
+
StatusResponse: An object containing the success status and an error message if an error occurs.
|
|
110
|
+
"""
|
|
111
|
+
response = StatusResponse(False)
|
|
112
|
+
need_to_close = self.is_connected is False
|
|
113
|
+
|
|
114
|
+
try:
|
|
115
|
+
self.connect()
|
|
116
|
+
response.success = True
|
|
117
|
+
except (OperationalError, TTransportException, ValueError) as known_error:
|
|
118
|
+
logger.error(f'Connection check to Hive failed, {known_error}!')
|
|
119
|
+
response.error_message = str(known_error)
|
|
120
|
+
except Exception as unknown_error:
|
|
121
|
+
logger.error(f'Connection check to Hive failed due to an unknown error, {unknown_error}!')
|
|
122
|
+
response.error_message = str(unknown_error)
|
|
123
|
+
|
|
124
|
+
if response.success is True and need_to_close:
|
|
125
|
+
self.disconnect()
|
|
126
|
+
if response.success is False and self.is_connected is True:
|
|
127
|
+
self.is_connected = False
|
|
128
|
+
|
|
129
|
+
return response
|
|
130
|
+
|
|
131
|
+
def native_query(self, query: Text) -> Response:
|
|
132
|
+
"""
|
|
133
|
+
Executes a native SQL query on the Apache Hive server and returns the result.
|
|
134
|
+
|
|
135
|
+
Args:
|
|
136
|
+
query (Text): The SQL query to be executed.
|
|
137
|
+
|
|
138
|
+
Returns:
|
|
139
|
+
Response: A response object containing the result of the query or an error message.
|
|
140
|
+
"""
|
|
141
|
+
need_to_close = self.is_connected is False
|
|
142
|
+
|
|
143
|
+
connection = self.connect()
|
|
144
|
+
with connection.cursor() as cur:
|
|
145
|
+
try:
|
|
146
|
+
cur.execute(query)
|
|
147
|
+
result = cur.fetchall()
|
|
148
|
+
if result:
|
|
149
|
+
response = Response(
|
|
150
|
+
RESPONSE_TYPE.TABLE,
|
|
151
|
+
pd.DataFrame(
|
|
152
|
+
result,
|
|
153
|
+
columns=[x[0].split('.')[-1] for x in cur.description]
|
|
154
|
+
)
|
|
155
|
+
)
|
|
156
|
+
else:
|
|
157
|
+
response = Response(RESPONSE_TYPE.OK)
|
|
158
|
+
connection.commit()
|
|
159
|
+
except OperationalError as operational_error:
|
|
160
|
+
logger.error(f'Error running query: {query} on {self.connection_data["database"]}!')
|
|
161
|
+
response = Response(
|
|
162
|
+
RESPONSE_TYPE.ERROR,
|
|
163
|
+
error_message=str(operational_error)
|
|
164
|
+
)
|
|
165
|
+
connection.rollback()
|
|
166
|
+
except Exception as unknown_error:
|
|
167
|
+
logger.error(f'Unknown error running query: {query} on {self.connection_data["database"]}!')
|
|
168
|
+
response = Response(
|
|
169
|
+
RESPONSE_TYPE.ERROR,
|
|
170
|
+
error_message=str(unknown_error)
|
|
171
|
+
)
|
|
172
|
+
connection.rollback()
|
|
173
|
+
|
|
174
|
+
if need_to_close is True:
|
|
175
|
+
self.disconnect()
|
|
176
|
+
|
|
177
|
+
return response
|
|
178
|
+
|
|
179
|
+
def query(self, query: ASTNode) -> Response:
|
|
180
|
+
"""
|
|
181
|
+
Executes a SQL query represented by an ASTNode on the Apache Hive server and retrieves the data (if any).
|
|
182
|
+
|
|
183
|
+
Args:
|
|
184
|
+
query (ASTNode): An ASTNode representing the SQL query to be executed.
|
|
185
|
+
|
|
186
|
+
Returns:
|
|
187
|
+
Response: The response from the `native_query` method, containing the result of the SQL query execution.
|
|
188
|
+
"""
|
|
189
|
+
renderer = SqlalchemyRender(sqlalchemy_hive.HiveDialect)
|
|
190
|
+
query_str = renderer.get_string(query, with_failback=True)
|
|
191
|
+
return self.native_query(query_str)
|
|
192
|
+
|
|
193
|
+
def get_tables(self) -> Response:
|
|
194
|
+
"""
|
|
195
|
+
Retrieves a list of all non-system tables in the Apache Hive server.
|
|
196
|
+
|
|
197
|
+
Returns:
|
|
198
|
+
Response: A response object containing a list of tables in the Apache Hive server.
|
|
199
|
+
"""
|
|
200
|
+
q = "SHOW TABLES"
|
|
201
|
+
result = self.native_query(q)
|
|
202
|
+
df = result.data_frame
|
|
203
|
+
result.data_frame = df.rename(columns={df.columns[0]: 'table_name'})
|
|
204
|
+
return result
|
|
205
|
+
|
|
206
|
+
def get_columns(self, table_name: Text) -> Response:
|
|
207
|
+
"""
|
|
208
|
+
Retrieves column details for a specified table in the Apache Hive server.
|
|
209
|
+
|
|
210
|
+
Args:
|
|
211
|
+
table_name (Text): The name of the table for which to retrieve column information.
|
|
212
|
+
|
|
213
|
+
Raises:
|
|
214
|
+
ValueError: If the 'table_name' is not a valid string.
|
|
215
|
+
|
|
216
|
+
Returns:
|
|
217
|
+
Response: A response object containing the column details.
|
|
218
|
+
"""
|
|
219
|
+
if not table_name or not isinstance(table_name, str):
|
|
220
|
+
raise ValueError("Invalid table name provided.")
|
|
221
|
+
|
|
222
|
+
q = f"DESCRIBE {table_name}"
|
|
223
|
+
result = self.native_query(q)
|
|
224
|
+
return result
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none">
|
|
2
|
+
<g clip-path="url(#clip0_146_491)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.7851 29.1809V36.5532H25.669V33.1525H26.0561V36.5284H27.9658V29.1809H26.0561V31.9114H25.669V29.1809H23.7851Z" fill="black" stroke="#FDEE21" stroke-width="0.7909"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.2883 29.1809H28.4561V36.5532H30.2883V29.1809Z" fill="black" stroke="#FDEE21" stroke-width="0.7909"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.598 29.1809L32.0432 36.5532H34.2367L35.6819 29.1809H33.7464L33.2561 32.3333C33.2045 32.4575 33.0754 32.4575 33.0496 32.3333L32.5593 29.1809H30.598Z" fill="black" stroke="#FDEE21" stroke-width="0.7909"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M39.7077 29.1809H36.069V36.5532H39.7077V34.617L37.6948 34.5922V33.7731H38.6496V31.8617H37.6948V31.117H39.7077V29.1809Z" fill="black" stroke="#FDEE21" stroke-width="0.7909"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.0432 6.79079C19.7335 5.97164 9.17868 2.02483 9.04965 2.47164C7.11416 2.94327 6.31416 5.10284 4.99803 6.44327L2.03029 6.29433C0.714163 7.90781 0.0431946 9.54611 0.507711 11.2589C2.18513 13.4433 4.12061 15.2801 5.33352 18.0355C5.43674 19.3262 11.14 18.1596 12.3529 17.9114C10.6755 19.0532 9.23029 20.8404 9.84965 25.9787C10.4174 28.3865 10.8045 31.0922 15.8625 33.8227C16.5335 34.1702 17.9013 34.5922 18.7529 34.8901C19.5787 35.2376 20.5335 35.3865 23.2174 34.617C24.7658 33.9716 26.4432 33.5745 27.9916 32.9291L26.1593 33.0036C23.6303 33.0532 21.6948 33.227 21.1013 32.5567L18.7787 28.7092L20.1206 26.1773C22.0045 26.3511 22.6238 27.8156 24.2755 28.3865L26.2109 26.9965C31.8626 30.1986 34.1077 24.961 34.7529 20.8901C34.6754 19.227 31.0109 21.4114 31.2432 20.6419C31.3206 18.8546 29.8238 16.5213 28.8432 14.7092L29.9787 10.4894C30.4948 10.0426 27.6045 5.37589 25.2303 4.78015C23.1658 4.25887 20.0432 6.79079 20.0432 6.79079Z" fill="#FDEE21"/>
|
|
8
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.3335 15.727C29.3593 16.1738 29.3593 16.7199 29.3851 17.0674C29.3851 17.3404 29.1787 17.3404 28.998 17.3901L30.1077 17.7872C30.3142 18.1348 30.4948 18.4823 30.6755 18.8546C30.8819 19.7234 30.7271 19.7482 30.5981 19.8227C30.211 19.8227 29.7981 19.8227 29.4368 19.7482C29.5916 19.8227 29.6432 19.8972 29.669 19.9965C29.6948 20.195 29.5658 20.4681 29.3593 20.7411C29.6948 20.9149 30.2884 21.0887 30.7271 21.2376L31.2174 20.1702C30.9593 18.5816 30.2626 17.117 29.3335 15.727Z" fill="#C8C037"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.3723 21.039C31.9916 21.2872 32.8174 21.2128 34.0045 20.6418C34.1852 20.5177 34.34 20.5922 34.0303 20.7908C32.4819 22.1064 31.7594 21.4362 31.3723 21.039Z" fill="#C8C037"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.1077 20.4433C34.2884 20.766 34.1851 21.039 34.1077 21.3369C33.9271 22.7766 33.4626 23.8936 32.5335 25.0851C29.5658 29.6773 26.5722 26.7979 24.198 24.9362L23.2174 27.3191C23.1658 27.5177 22.9593 27.6915 24.4819 28.3369L26.0561 27.2695C32.069 31.6631 36.3013 21.1383 34.1077 20.4433Z" fill="#C8C037"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9464 24.539C24.5335 24.5638 23.3464 24.961 23.2948 25.1844L23.8368 24.3901L24.9464 24.539Z" fill="#C8C037"/>
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.1464 19.6986C24.2238 19.6986 24.5851 19.7979 24.5335 19.773C24.4819 19.7482 24.5335 20.2447 24.6367 20.5177L24.198 21.4362C25.0238 20.5177 26.34 20.5674 27.5529 20.4681L26.9593 20.1206C27.0626 19.7979 26.9335 19.5496 26.8819 19.2766L24.1464 19.6986Z" fill="#C8C037"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2109 16.9433C25.3077 17.2163 24.4561 17.6383 23.8884 18.5567C24.3271 17.0426 24.4045 17.117 24.5593 17.0426C25.1529 16.7695 25.669 16.9433 26.2109 16.9433Z" fill="#C8C037"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.4367 34.6418C20.3529 35.7837 17.9529 34.5674 15.9658 33.922C10.8819 30.8192 9.90125 27.8901 9.82383 25.0355C9.56576 20.9397 10.8819 18.5567 12.5335 17.9858C11.4238 20.0213 10.9335 23.6702 11.4238 26.3759C11.8367 27.8901 11.8367 30.422 14.469 31.7872C15.7593 32.4823 15.398 33.0284 16.2754 33.6738C17.2561 34.3936 19.9142 35.0887 21.4367 34.6418Z" fill="#FCF6A0"/>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.0625 15.6525C21.2303 13.1702 18.6754 12.227 15.7851 12.1277C16.3529 11.9539 16.9464 11.8546 17.5142 11.5816C17.669 11.4326 17.6174 11.1844 17.5658 10.9362C14.7787 10.2411 13.0238 9.37234 10.8045 8.57802L16.8174 9.96809C20.8432 10.117 20.5077 11.0851 23.0625 15.6525Z" fill="#FCF6A0"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.998 14.461C23.6561 12.5993 22.34 10.3652 20.5593 8.92553C16.3013 7.08865 12.0432 5.69858 7.08835 4.43263L8.66254 2.47163C13.9271 3.6383 18.8819 5.57447 23.3206 8.75177C24.069 10.5887 24.5851 12.4255 24.998 14.461Z" fill="#FCF6A0"/>
|
|
17
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.7335 11.1844C27.7335 11.1844 26.9851 9.5461 26.598 8.92554C25.7464 8.0071 25.3077 6.31915 23.5529 5.52483C24.0948 5.67376 24.4819 5.5 25.6174 6.49291L27.398 9.74468L27.7335 11.1844Z" fill="#FCF6A0"/>
|
|
18
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.6625 14.0142C28.8432 12.5993 29.1787 10.3404 28.7916 9.44681C27.7335 8.08157 26.6754 6.66667 25.5916 5.35107C25.4109 5.20213 25.2819 4.97873 25.1529 4.80497C26.6496 5.17731 28.2238 6.17022 30.3142 10.1418L28.6625 14.0142Z" fill="#FCF6A0"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.3658 14.1879C21.7722 13.7411 21.2303 12.1525 20.3271 11.805C19.5013 11.7305 19.1916 11.4823 18.0819 11.7057C18.469 11.5071 18.8561 11.2589 19.269 11.1348C19.5529 11.0603 19.8367 11.1348 20.0948 11.1844C20.1722 11.1596 20.198 11.1099 20.198 11.0603C19.0883 10.3901 16.8174 10.3901 15.2948 10.0177C17.0754 10.0674 19.0367 9.96809 20.3787 10.3901C21.4625 11.2837 21.8238 13.0213 22.3658 14.1879Z" fill="black"/>
|
|
20
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.6174 6.49291C25.8754 6.51773 27.1916 8.52837 27.2432 8.87589C27.3464 9.62057 27.6303 10.4397 27.7077 11.2092C27.5012 10.4645 27.2432 9.74469 26.9593 9C26.8819 8.80142 26.6496 8.32979 26.0303 7.6844C25.7722 7.21277 25.6948 6.84043 25.6174 6.49291Z" fill="black"/>
|
|
21
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.1335 17.4894H29.5658L30.1851 17.6383L30.1335 17.4894Z" fill="black"/>
|
|
22
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.2625 16.9433C25.6948 16.8688 25.1012 16.8688 24.5335 16.9929C24.3012 17.2908 24.2754 17.5887 24.1722 17.8865C24.869 17.1419 25.1529 17.0922 26.2625 16.9433Z" fill="black"/>
|
|
23
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.0561 20.7411C33.7464 20.9894 33.6948 21.2128 32.7658 21.4858C32.069 21.6348 31.6819 21.3865 31.3722 21.0142C31.8625 21.1383 31.94 21.5106 33.2561 21.1135L34.0561 20.7411Z" fill="black"/>
|
|
24
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.1916 20.8901C30.9593 21.4858 30.727 22.1064 30.469 22.6773C29.8754 23.3475 30.1335 22.9752 29.2303 23.9929C29.5141 23.5709 29.8754 23.1738 30.0819 22.727C30.2109 22.4291 30.3916 22.1312 30.469 21.883C30.2367 21.7589 29.7464 21.7589 29.6948 21.8085C28.8948 22.2553 28.7658 22.727 28.3012 23.1986C28.6367 22.6773 28.9206 22.1064 29.3077 21.6596C29.3593 21.6099 29.6432 21.5851 29.8238 21.5603C29.5399 21.5106 29.0238 21.4114 28.998 21.4114C28.4819 21.5355 28.198 21.9575 27.8109 22.2553C28.0948 21.8582 28.3528 21.461 28.6883 21.1383C28.7141 21.0887 29.669 21.1879 30.1851 21.3617V21.5603L30.469 21.6596L30.6754 21.1383L31.1916 20.8901Z" fill="black"/>
|
|
25
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.9464 24.539C24.8174 24.4894 23.7077 24.3652 23.7077 24.3901C23.269 24.6879 23.2174 24.961 23.2174 25.2092C23.94 24.539 23.9141 24.539 24.9464 24.539Z" fill="black"/>
|
|
26
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.0948 19.6738C24.0948 19.6738 24.8948 19.5497 24.8948 19.6241C24.8432 19.8972 24.998 20.5426 25.0238 20.4681L24.5593 20.8156C25.5141 20.344 26.5206 20.4433 27.527 20.3688C27.527 20.3688 26.6754 20.1454 26.727 20.1454C26.9077 20.1206 26.6754 19.2766 26.598 19.2766C26.7529 19.227 26.9077 19.1773 27.0883 19.1525C25.8754 18.8298 25.1787 19.0284 24.0948 19.6738Z" fill="black"/>
|
|
27
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.1142 20.2695L30.9335 20.344C30.9077 19.8475 30.34 19.8723 29.8754 19.8723L29.4883 19.7731C29.6174 19.8723 29.9787 19.8723 29.8238 20.0958C29.6948 20.1702 29.6432 20.4433 29.5658 20.6667H29.3593C29.7206 20.8156 30.0819 20.9397 30.4948 21.0887L30.7271 21.1135L31.3206 20.8156L31.1142 20.2695Z" fill="black"/>
|
|
28
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M25.7464 19.922C25.6432 19.7482 25.2045 19.7731 25.1012 19.8972C25.0238 19.9965 25.1012 20.5674 25.2045 20.4681C25.3593 20.344 25.54 20.2943 25.7722 20.2943C25.798 20.1702 25.798 20.0709 25.7464 19.922Z" fill="white"/>
|
|
29
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.1335 20.7908C30.1851 20.766 30.2625 20.4681 30.2367 20.3688C30.1851 20.1702 29.7464 20.195 29.7464 20.195C29.6432 20.2447 29.54 20.5674 29.5916 20.6915C29.6174 20.7908 30.0561 20.8156 30.1335 20.7908Z" fill="white"/>
|
|
30
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9142 30.8936L12.1722 30.9184C13.7722 31.6631 16.4045 32.7801 20.198 32.1844L20.7916 33.078C19.1142 33.8723 17.3077 33.6738 15.6303 33.7234L11.9142 30.8936Z" fill="black"/>
|
|
31
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.64319 24.9362L10.4432 28.1631C12.5851 29.4539 16.2238 30.9184 19.269 30.7943L18.598 29.305C12.2496 28.0142 11.7077 26.3759 9.64319 24.9362Z" fill="black"/>
|
|
32
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6303 18.3333C12.0174 20.8404 12.5335 22.727 14.8045 24.3156C16.198 25.2837 17.5658 26.227 19.2432 27.0213C19.2432 27.0213 19.0884 27.766 18.9851 27.7411C14.0045 27.2199 10.3658 23.2482 9.92706 21.4362C10.3142 20.0213 10.9335 19.1525 11.6303 18.3333Z" fill="black"/>
|
|
33
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.0045 16.9184C14.6755 19.6986 16.2496 22.5036 17.8238 25.0355C18.3916 25.7305 18.5464 26.0532 19.4496 26.4752C20.6626 26.8475 21.4884 26.7482 22.3658 26.6986C22.1335 26.2766 21.9271 25.8298 21.6432 25.4326C19.6819 23.9433 20.5851 22.6028 21.1013 21.734C20.0174 21.461 18.5722 20.9149 18.3916 20.1702C18.0819 17.7872 18.2367 17.0426 18.5464 15.8014C17.0755 16.0993 15.6045 16.3972 14.0045 16.9184Z" fill="black"/>
|
|
34
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.63674 2.19859C8.14642 2.49646 7.6819 2.94327 7.19158 3.43972C6.36578 4.25887 5.79803 5.07802 4.97223 5.67376C4.79158 5.8227 4.32706 6.0461 3.73352 6.07093C3.44965 6.09575 3.269 6.12057 2.75287 6.07093C2.28836 5.8227 1.87545 5.99646 1.43674 6.46809C0.972226 7.11348 0.378677 8.32979 0.146419 9.09929C-0.343904 11.0603 0.920613 12.6489 2.15932 13.8901C3.24319 14.9078 3.88836 15.5532 4.32707 16.4965C4.66255 17.117 4.92061 17.9362 5.17868 18.5319C5.2819 18.7057 5.2561 18.7057 5.51416 18.7801C6.0819 18.9043 6.8819 18.9043 7.57868 18.9539C7.88836 18.9539 8.30126 18.9539 8.68836 18.9043C9.23029 18.805 9.87545 18.7057 10.4174 18.5319C10.9335 18.4078 11.4238 18.234 11.8367 18.0851C11.7851 18.2589 11.3722 18.4326 11.2174 18.656C9.79803 20.617 9.38513 22.3794 9.6432 25.1596C9.77223 26.3759 10.0819 27.3936 10.5206 28.5603C10.7271 29.0816 11.14 29.9255 11.5529 30.4965C12.7658 32.1596 15.5271 34.2943 19.3464 35.1135C20.0174 35.2128 20.7658 35.1631 21.4884 34.9645C23.3722 34.4184 27.2174 33.1277 27.2174 33.1277C27.2174 33.1277 23.8109 33.4007 22.2367 33.2518C21.8755 33.2021 21.4884 33.1773 21.2303 32.9539C21.1787 32.9043 21.0238 32.6064 21.1271 32.6064C21.2561 32.6064 21.6432 32.4574 22.2367 32.4078C20.9464 32.2837 20.9722 32.2837 20.8948 32.0603C20.74 31.7128 20.5335 31.2411 20.3013 30.8192C20.869 30.8688 22.1077 30.9433 22.5206 30.5213C22.5206 30.5213 21.7722 30.5957 21.1271 30.5213C20.9206 30.4965 20.5335 30.3723 20.4303 30.3227C20.1464 30.2234 19.8884 30.1738 19.8367 30.0993C19.7335 29.8511 19.6561 29.7766 19.5529 29.4291C19.398 28.9823 19.3722 28.4858 19.3464 28.039C19.7593 28.5355 20.3271 28.9574 21.0238 29.1809C21.0238 29.156 21.9529 29.578 22.6238 29.3546L22.7529 29.305C22.7529 29.305 22.3142 29.3546 22.1593 29.2553C20.7916 28.7092 20.5851 28.2128 20.3787 27.9645L19.7851 27.1206C19.9658 26.7731 20.069 26.7731 20.3013 26.7731C21.0238 26.8475 21.3335 26.8972 21.7722 26.7979C22.0561 27.3936 22.1593 27.9645 22.8303 28.3865C25.0755 29.0319 25.54 28.1879 26.0819 27.4681C27.6819 28.6099 30.3142 28.9575 32.1206 27.4929C34.4432 24.9114 35.1658 20.8653 34.9593 20.6418C34.6755 20.1702 34.2884 19.6738 33.9787 19.7482C32.8174 20.0461 32.4045 20.617 31.2432 20.4929C31.3722 20.4929 31.6045 20.4929 31.6045 20.4681C31.6819 19.5248 31.6045 19.078 31.5529 19.0035C31.1916 18.2589 30.7529 17.4894 30.4174 16.8936C30.34 16.7695 30.0819 15.8511 29.6948 15.4787C29.5142 15.3298 29.1013 14.9575 29.1013 14.9575L29.0755 15.3546C29.0755 15.3546 29.2303 15.3794 29.3077 15.6277C29.54 16.5709 30.7787 18.7801 30.8561 18.8794C31.2948 19.5496 30.9077 20.3936 31.2174 20.8653C31.2432 20.9149 31.8884 20.8653 32.3787 20.8901C33.2045 20.7163 33.1529 20.3688 33.8755 20.3192C34.34 20.2943 34.3916 21.1383 34.3916 21.2128C34.3142 22.156 34.0045 23.2482 33.54 24.266C32.5851 26.0284 31.5271 27.617 30.0045 27.8404C28.1722 28.1383 27.1916 27.3688 26.2109 26.8723L25.8238 27.195C24.5335 28.4362 22.9851 28.3369 22.34 26.6986C22.0303 26.078 21.6174 25.6809 21.2561 25.1348L19.398 26.4255C19.2432 26.7234 19.0625 27.2199 18.8303 27.7411C18.6755 28.1135 18.5464 28.7589 18.5464 29.2801C18.3142 29.6773 19.3722 31.2411 20.0432 32.2092C20.2496 32.4823 20.6109 32.9787 20.6367 33.0284C20.7658 33.3511 21.0496 33.6489 21.0755 33.6986C22.3142 35.2624 19.5013 34.9149 18.9077 34.8156C17.7464 34.6418 16.6367 34.1702 15.5787 33.5496C15.5271 33.5248 15.4496 33.4752 15.398 33.4504C14.1335 32.6809 12.998 31.7128 12.0174 30.7447C11.4238 30.0993 10.8819 28.8085 10.469 27.8653C9.84965 25.6312 8.97223 21.7837 11.3722 18.8546C11.5271 18.6809 11.6819 18.4078 11.8367 18.3582C12.5593 17.8865 13.3335 17.5887 14.1593 17.3901L14.0819 16.8688C13.669 16.9681 12.2755 17.4645 11.8625 17.6631C10.9593 17.9114 10.2109 18.1844 9.07545 18.4575C8.71416 18.5071 8.32707 18.5071 7.96578 18.4575C7.13997 18.3582 5.72061 18.4574 5.64319 18.3582C5.07545 17.6135 4.92061 16.2731 4.43029 15.5532C4.12061 15.1809 3.78513 14.8582 3.44965 14.5355C2.23674 13.3688 1.17868 12.227 0.894807 11.0355C0.817387 10.6879 0.636742 10.3156 0.739968 9.27305C1.02384 8.30497 1.51416 7.51064 2.31416 6.69149C3.16577 6.71632 3.99158 6.71632 4.63674 6.84043C4.94642 6.89007 5.56577 6.96454 6.21094 7.18795C7.83674 7.75887 9.97868 8.72695 9.97868 8.72695C8.37868 7.88298 6.57223 6.76596 5.43674 6.54256C5.2561 6.51773 5.15287 6.44327 5.10126 6.31915C6.77868 5.35107 7.08836 4.20922 8.22384 3.19149C8.73997 2.96809 8.94642 2.8688 9.38513 2.81915C13.4367 3.43972 15.9658 4.97873 17.9787 6.02128C18.8045 6.44327 19.5271 6.76596 20.2496 7.16312C20.869 7.36171 22.7529 8.72695 23.2948 9.44681C23.8626 10.5887 24.2496 11.805 24.6367 12.9965C24.8948 14.1879 25.1271 14.6844 25.1271 14.6844C25.1271 14.6844 24.8948 13.6915 24.9464 13.4929C25.1787 13.5674 25.7464 13.7411 25.9787 13.7163C25.9787 13.7163 24.9464 13.195 24.8174 12.7482C24.3787 11.3085 23.94 9.04965 23.8367 8.92554C23.5013 8.52837 22.1335 7.51064 21.2819 7.03901C20.9722 6.86525 20.7916 6.74114 20.7658 6.66667C21.0238 6.39362 21.3593 6.07093 21.669 5.84752C21.9529 5.64894 22.2109 5.40071 22.6238 5.25178C24.3787 4.48227 25.3851 5.54965 25.6174 5.32625C25.6174 5.32625 25.2303 4.90426 25.4109 4.97873C25.5916 5.07802 26.1335 5.17731 26.2109 5.22695C26.8561 5.69859 28.5077 7.461 29.5142 9.3227C29.7464 9.76951 29.8496 10.0674 29.7464 10.6135C29.6432 11.1596 29.54 11.4574 29.4367 11.8298C29.3335 12.078 28.6884 13.7411 28.7142 13.9645C28.5851 14.883 29.1271 16.0248 29.1271 16.0248C29.1271 15.7021 29.1013 15.5532 29.1271 15.3298L29.1529 14.9326C29.1529 14.9326 29.1271 14.8333 29.1271 14.7837C29.1529 14.5106 29.2303 14.2872 29.2561 14.1135C29.4625 12.922 29.798 12.0532 30.2109 11.0106C30.34 10.7376 30.4948 10.5887 30.469 10.3901C30.469 10.0426 30.1335 9.5461 29.9013 9.07447C29.669 8.60284 29.3593 8.08156 28.998 7.51064C28.1206 6.31915 27.398 5.37589 26.0303 4.78015C25.6432 4.63121 24.1464 4.45745 23.6303 4.55674C23.0109 4.68085 22.469 4.80497 22.0303 5.07802C21.3593 5.5 20.8174 6.14539 20.198 6.51773C18.8303 5.84752 18.1593 5.35107 18.0303 5.30142C17.2045 4.87944 16.2238 4.38298 15.1658 3.93617C14.6496 3.51419 11.5013 2.42199 8.63674 2.19859ZM26.2109 26.8723C25.3593 26.227 24.6367 25.5816 24.1722 24.9114C24.0174 25.7057 23.4496 26.2766 23.0367 26.8227C22.9593 26.9468 22.8819 27.1206 23.3206 27.6915C23.4238 27.8404 23.8367 27.8653 24.1206 27.8653C23.8367 27.6667 23.398 27.4433 23.3464 27.2447C23.8367 27.5674 24.3013 27.6667 24.7142 27.617C24.8174 27.617 24.9206 27.5177 25.0238 27.3688C25.2045 26.9965 25.3593 26.8972 25.5142 26.7979L25.8496 27.195L26.2109 26.8723Z" fill="black" stroke="black" stroke-width="0.0175764"/>
|
|
35
|
+
</g>
|
|
36
|
+
<defs>
|
|
37
|
+
<clipPath id="clip0_146_491">
|
|
38
|
+
<rect width="40" height="40" fill="white"/>
|
|
39
|
+
</clipPath>
|
|
40
|
+
</defs>
|
|
41
|
+
</svg>
|
|
File without changes
|