MindsDB 23.11.1.0__tar.gz → 23.11.4.1__tar.gz
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-23.11.4.1/LICENSE +86 -0
- MindsDB-23.11.4.1/MindsDB.egg-info/PKG-INFO +333 -0
- MindsDB-23.11.4.1/MindsDB.egg-info/SOURCES.txt +1529 -0
- MindsDB-23.11.4.1/MindsDB.egg-info/requires.txt +868 -0
- MindsDB-23.11.4.1/PKG-INFO +333 -0
- MindsDB-23.11.4.1/README.md +152 -0
- MindsDB-23.11.4.1/mindsdb/__about__.py +10 -0
- MindsDB-23.11.4.1/mindsdb/__main__.py +395 -0
- MindsDB-23.11.4.1/mindsdb/api/common/check_auth.py +42 -0
- MindsDB-23.11.4.1/mindsdb/api/http/gui.py +94 -0
- MindsDB-23.11.4.1/mindsdb/api/http/initialize.py +397 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/analysis.py +109 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/auth.py +164 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/config.py +259 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/default.py +148 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/file.py +179 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/handlers.py +201 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/skills.py +164 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/sql.py +148 -0
- MindsDB-23.11.4.1/mindsdb/api/http/namespaces/tab.py +66 -0
- MindsDB-23.11.4.1/mindsdb/api/http/start.py +69 -0
- MindsDB-23.11.4.1/mindsdb/api/mongo/classes/responder_collection.py +34 -0
- MindsDB-23.11.4.1/mindsdb/api/mongo/responders/insert.py +266 -0
- MindsDB-23.11.4.1/mindsdb/api/mongo/responders/sasl_start.py +33 -0
- MindsDB-23.11.4.1/mindsdb/api/mongo/server.py +397 -0
- MindsDB-23.11.4.1/mindsdb/api/mongo/start.py +15 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/classes/sql_query.py +1674 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/controllers/session_controller.py +121 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +194 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +168 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/information_schema_datanode.py +1019 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/integration_datanode.py +194 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/project_datanode.py +187 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor.py +223 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_client_factory.py +38 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_commands.py +2059 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_client.py +145 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_wrapper.py +252 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/executor/executor_service.py +18 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +875 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +1 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/utilities/sql.py +149 -0
- MindsDB-23.11.4.1/mindsdb/api/mysql/start.py +13 -0
- MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/executor/executor.py +191 -0
- MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +253 -0
- MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +479 -0
- MindsDB-23.11.4.1/mindsdb/api/postgres/start.py +11 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/access_handler/access_handler.py +211 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aerospike_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/airtable_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +236 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +246 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +4 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/anthropic_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/anthropic_handler/__init__.py +21 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +123 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +10 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/apache_doris_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/__init__.py +33 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/aqicn.py +30 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/aqicn_handler.py +114 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/aqicn_tables.py +444 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler/icon.png +0 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +188 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autogluon_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +57 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autogluon_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autokeras_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autokeras_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autosklearn_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +171 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/binance_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/binance_handler/binance_handler.py +144 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/byom_handler.py +597 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +183 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/byom_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +61 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +445 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/settings.py +59 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler/tests/test_chromadb_handler.py +496 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ckan_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +101 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +212 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/__init__.py +21 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/clipdrop.py +83 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/clipdrop_handler/clipdrop_handler.py +206 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +249 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cockroach_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cockroach_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cohere_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cohere_handler/__init__.py +20 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +134 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/__init__.py +20 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/coinbase_handler.py +167 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/coinbase_tables.py +56 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler/icon.svg +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/__init__.py +26 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +98 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/confluence_table.py +220 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler/tests/test_confluence_handler.py +68 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/couchbase_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +239 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/crate_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/crate_handler/crate_handler.py +213 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +12 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/databend_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/databend_handler/databend_handler.py +226 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/databricks_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +262 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +12 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/db2_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/db2_handler/db2_handler.py +266 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/derby_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/derby_handler/derby_handler.py +249 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/discord_handler.py +187 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/discord_tables.py +189 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/icon.png +0 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler/tests/test_discord.py +60 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dockerhub_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +136 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +509 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/documentdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +93 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/documentdb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dremio_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +240 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler/druid_handler.py +263 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/duckdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +189 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dynamodb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +232 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +56 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +252 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/__init__.py +21 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/email_handler.py +84 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/email_handler/email_helpers.py +94 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/empress_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/empress_handler/empress_handler.py +251 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_handler.py +94 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/eventbrite_tables.py +612 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +214 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/__init__.py +31 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/faunadb_handler.py +304 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/icon.svg +7 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler/tests/test_faunadb_handler.py +41 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/file_handler.py +430 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/requirements.txt +5 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +392 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/firebird_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +271 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/flaml_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/flaml_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/frappe_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +209 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/github_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/github_handler/github_handler.py +159 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/github_handler/github_tables.py +1315 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/gitlab_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +84 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +393 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/gmail_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +593 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +184 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +303 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +414 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_fit_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +155 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_fit_handler/requirements.txt +5 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_search_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +221 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hackernews_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +102 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hana_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hana_handler/hana_handler.py +309 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler/hive_handler.py +192 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hsqldb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +234 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/hubspot_handler.py +96 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/hubspot_tables.py +591 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/icon.svg +22 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/hubspot_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +18 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +373 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/requirements.txt +6 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_handler/requirements_cpu.txt +7 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ignite_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +251 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/impala_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/impala_handler/impala_handler.py +194 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/__init__.py +26 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +105 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +81 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/influxdb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler/informix_handler.py +318 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler/__about__.py +10 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +243 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/__init__.py +28 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/icon.svg +20 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/instatus_handler.py +131 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/instatus_handler/instatus_tables.py +169 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/__init__.py +28 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/icon.svg +11 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/intercom_handler.py +117 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/intercom_handler/intercom_tables.py +152 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/__init__.py +26 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/jira_handler.py +119 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/jira_handler/jira_table.py +151 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/kinetica_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +65 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/kinetica_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/__init__.py +31 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/icon.png +0 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/lancedb_handler.py +377 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler/tests/test_lancedb_handler.py +99 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +205 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +417 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/mindsdb_database_agent.py +157 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/requirements.txt +6 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/langchain_handler/tools.py +218 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/api.py +513 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/icon.png +0 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/lightdash_handler.py +108 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler/lightdash_tables.py +648 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightfm_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightfm_handler/__init__.py +20 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightfm_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/__init__.py +18 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/functions.py +252 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler.py +581 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler/utils.py +76 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +220 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/__init__.py +18 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +231 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/llama_index_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ludwig_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ludwig_handler/requirements.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/__init__.py +33 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/luma.py +47 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/luma_handler.py +93 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/luma_tables.py +164 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mariadb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +12 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mariadb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +43 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/matrixone_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +216 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/maxdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +225 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mediawiki_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +87 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +98 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mendeley_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +225 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/merlion_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +205 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/merlion_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +515 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mlflow_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +270 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +320 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ms_teams_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +90 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +64 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mssql_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +150 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mysql_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +314 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +135 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/neuralforecast_handler/requirements_extra.txt +3 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/newsapi_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/__init__.py +30 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/notion_handler.py +238 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler/notion_table.py +422 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/npm_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/npm_handler/api.py +26 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +292 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +48 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +117 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +208 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ollama_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/constants.py +31 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/helpers.py +151 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/openai_handler.py +831 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openai_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +186 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +163 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openbb_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +45 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/icon.svg +4 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_handler.py +90 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/openstreetmap_tables.py +243 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler/tests/test_openstreetmap_handler.py +37 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oracle_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +217 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +48 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/palm_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/palm_handler/palm_handler.py +448 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/palm_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/paypal_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +145 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +274 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pgvector_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +342 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pgvector_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +278 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinecone_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +398 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinot_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +269 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pirateweather_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/plaid_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +225 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/planetscale_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +45 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/planetscale_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +20 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/postgres_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +264 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/__init__.py +23 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/pycaret_handler.py +116 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/test/test_pycaret.py +246 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/pypi_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/qdrant_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +478 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +28 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/quickbooks_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +97 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/ingest.py +211 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/rag.py +143 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/rag_handler.py +138 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/requirements.txt +7 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rag_handler/settings.py +470 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/ray_serve_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/reddit_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +106 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/redshift_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +242 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/replicate_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +153 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +56 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/s3_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/s3_handler/s3_handler.py +248 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/api.py +79 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/icon.png +0 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_handler.py +161 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler/sap_erp_tables.py +1928 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +249 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sendinblue_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +94 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +181 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sentence_transformer_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sentence_transformer_handler/sentence_transformer_handler.py +66 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sharepoint_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +147 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sheets_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +195 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +143 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +928 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +12 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/slack_handler.py +547 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +29 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/snowflake_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +137 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/solace_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/solace_handler/solace_handler.py +169 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/solr_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/solr_handler/solr_handler.py +220 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/__init__.py +18 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/spacy_handler/spacy_handler.py +194 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlany_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +224 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlite_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +195 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +206 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/__init__.py +18 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/icon.svg +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/stabilityai.py +186 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stabilityai_handler/stabilityai_handler.py +185 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +48 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/requirements_extra.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +191 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +153 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +51 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/strava_handler.py +113 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/strava_handler/strava_tables.py +247 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stripe_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +102 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +508 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +11 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +244 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/__init__.py +33 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/icon.svg +13 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/symbl_handler.py +129 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/symbl_handler/symbl_tables.py +648 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tdengine_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +182 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/teradata_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +263 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +45 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/timegpt_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +46 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tpot_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tpot_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/requirements.txt +2 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/trino_handler.py +182 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +275 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/twilio_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +385 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/twitter_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/twitter_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +471 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/auth_utilities/__init__.py +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/auth_utilities/exceptions.py +6 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/auth_utilities/google_oauth_utilities.py +108 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/query_utilities/base_query_utilities.py +63 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities/query_utilities/select_query_utilities.py +135 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertex_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertex_handler/vertex_client.py +88 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +87 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertica_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +200 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +48 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/weaviate_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +691 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/tests/example_data.py +18 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/tests/test_helpers.py +49 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +331 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/web_handler.py +113 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/webz_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/webz_handler/webz_handler.py +175 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/evaluate.py +362 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/requirements.txt +6 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/settings.py +87 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/writer_handler/writer_handler.py +188 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/xata_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/xata_handler/xata_handler.py +421 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/__init__.py +27 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +164 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +436 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/requirements.txt +1 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +60 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +9 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +124 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +499 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers_client/db_client_factory.py +38 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers_client/db_grpc_client.py +141 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/db_grpc_wrapper.py +241 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/db_handler_service.py +16 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/ml_grpc_wrapper.py +179 -0
- MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper/ml_handler_service.py +30 -0
- MindsDB-23.11.4.1/mindsdb/integrations/libs/base.py +361 -0
- MindsDB-23.11.4.1/mindsdb/integrations/libs/handler_helpers.py +55 -0
- MindsDB-23.11.4.1/mindsdb/integrations/libs/learn_process.py +220 -0
- MindsDB-23.11.4.1/mindsdb/integrations/libs/ml_exec_base.py +405 -0
- MindsDB-23.11.4.1/mindsdb/integrations/libs/response.py +96 -0
- MindsDB-23.11.4.1/mindsdb/integrations/libs/vectordatabase_handler.py +543 -0
- MindsDB-23.11.4.1/mindsdb/integrations/utilities/time_series_utils.py +191 -0
- MindsDB-23.11.4.1/mindsdb/integrations/utilities/utils.py +23 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/agents/agents_controller.py +251 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/chatbot_controller.py +314 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/chatbot_executor.py +180 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/chatbot_task.py +108 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/model_executor.py +104 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/chatbot/polling.py +149 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/database/database.py +94 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/database/integrations.py +656 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/database/projects.py +333 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/database/views.py +104 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/file/file_controller.py +147 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/jobs/jobs_controller.py +409 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/jobs/scheduler.py +142 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/knowledge_base/controller.py +376 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/model/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/model/functions.py +155 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/model/model_controller.py +515 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/query_context/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/query_context/context_controller.py +274 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/query_context/last_query.py +216 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/skills/skill_tool.py +117 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/skills/skills_controller.py +162 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/storage/db.py +540 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/storage/fs.py +611 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/storage/json.py +97 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/storage/model_fs.py +282 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/stream/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/stream/base/integration.py +165 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/stream/stream.py +28 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/tasks/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/tasks/task_monitor.py +150 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/tasks/task_thread.py +55 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/triggers/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/interfaces/triggers/trigger_task.py +95 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/db/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/db/common_pb2.pyi +27 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/db/db_pb2.pyi +40 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/executor/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/executor/executor_pb2.pyi +81 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/ml/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/ml/common_pb2.pyi +27 -0
- MindsDB-23.11.4.1/mindsdb/microservices_grpc/ml/ml_pb2.pyi +50 -0
- MindsDB-23.11.4.1/mindsdb/migrations/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/migrations/alembic.ini +65 -0
- MindsDB-23.11.4.1/mindsdb/migrations/env.py +88 -0
- MindsDB-23.11.4.1/mindsdb/migrations/migrate.py +50 -0
- MindsDB-23.11.4.1/mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +178 -0
- MindsDB-23.11.4.1/mindsdb/migrations/versions/2023-11-01_c67822e96833_jobs_active.py +33 -0
- MindsDB-23.11.4.1/mindsdb/migrations/versions/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/utilities/__init__.py +0 -0
- MindsDB-23.11.4.1/mindsdb/utilities/exception.py +29 -0
- MindsDB-23.11.4.1/mindsdb/utilities/fs.py +164 -0
- MindsDB-23.11.4.1/mindsdb/utilities/functions.py +185 -0
- MindsDB-23.11.4.1/mindsdb/utilities/hooks/profiling.py +74 -0
- MindsDB-23.11.4.1/mindsdb/utilities/json_encoder.py +27 -0
- MindsDB-23.11.4.1/mindsdb/utilities/log.py +78 -0
- MindsDB-23.11.4.1/mindsdb/utilities/ml_task_queue/consumer.py +251 -0
- MindsDB-23.11.4.1/mindsdb/utilities/ml_task_queue/producer.py +80 -0
- MindsDB-23.11.4.1/mindsdb/utilities/security.py +33 -0
- MindsDB-23.11.4.1/requirements/requirements-grpc.txt +1 -0
- MindsDB-23.11.4.1/requirements/requirements.txt +35 -0
- MindsDB-23.11.4.1/setup.py +193 -0
- MindsDB-23.11.1.0/MindsDB.egg-info/PKG-INFO +0 -332
- MindsDB-23.11.1.0/MindsDB.egg-info/SOURCES.txt +0 -1448
- MindsDB-23.11.1.0/MindsDB.egg-info/requires.txt +0 -884
- MindsDB-23.11.1.0/PKG-INFO +0 -332
- MindsDB-23.11.1.0/README.md +0 -154
- MindsDB-23.11.1.0/mindsdb/__about__.py +0 -10
- MindsDB-23.11.1.0/mindsdb/__main__.py +0 -354
- MindsDB-23.11.1.0/mindsdb/api/common/check_auth.py +0 -41
- MindsDB-23.11.1.0/mindsdb/api/http/gui.py +0 -89
- MindsDB-23.11.1.0/mindsdb/api/http/initialize.py +0 -383
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/analysis.py +0 -104
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/auth.py +0 -178
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/config.py +0 -257
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/default.py +0 -148
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/file.py +0 -168
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/handlers.py +0 -145
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/skills.py +0 -164
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/sql.py +0 -135
- MindsDB-23.11.1.0/mindsdb/api/http/namespaces/tab.py +0 -66
- MindsDB-23.11.1.0/mindsdb/api/http/start.py +0 -68
- MindsDB-23.11.1.0/mindsdb/api/mongo/classes/responder_collection.py +0 -33
- MindsDB-23.11.1.0/mindsdb/api/mongo/responders/insert.py +0 -267
- MindsDB-23.11.1.0/mindsdb/api/mongo/responders/sasl_start.py +0 -34
- MindsDB-23.11.1.0/mindsdb/api/mongo/server.py +0 -395
- MindsDB-23.11.1.0/mindsdb/api/mongo/start.py +0 -15
- MindsDB-23.11.1.0/mindsdb/api/mongo/utilities/__init__.py +0 -1
- MindsDB-23.11.1.0/mindsdb/api/mongo/utilities/log.py +0 -3
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/classes/sql_query.py +0 -1648
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/controllers/session_controller.py +0 -115
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/data_types/mysql_datum.py +0 -168
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packet.py +0 -150
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/information_schema_datanode.py +0 -964
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/integration_datanode.py +0 -182
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/project_datanode.py +0 -120
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor.py +0 -224
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_client_factory.py +0 -38
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_commands.py +0 -1956
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_client.py +0 -144
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_grpc_wrapper.py +0 -254
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/executor/executor_service.py +0 -17
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/mysql_proxy.py +0 -857
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/utilities/__init__.py +0 -2
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/utilities/log.py +0 -3
- MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/utilities/sql.py +0 -146
- MindsDB-23.11.1.0/mindsdb/api/mysql/start.py +0 -16
- MindsDB-23.11.1.0/mindsdb/api/nlp/nlp.py +0 -42
- MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/executor/executor.py +0 -191
- MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_packets.py +0 -253
- MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/postgres_proxy.py +0 -479
- MindsDB-23.11.1.0/mindsdb/api/postgres/start.py +0 -14
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/access_handler/access_handler.py +0 -209
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/aerospike_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler/airtable_handler.py +0 -234
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/altibase_handler/altibase_handler.py +0 -246
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anomaly_detection_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anomaly_detection_handler/setup.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/__init__.py +0 -20
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/anthropic_handler.py +0 -110
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anthropic_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anyscale_endpoints_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/anyscale_endpoints_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/apache_doris_handler/apache_doris_handler.py +0 -10
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler/aurora_handler.py +0 -187
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/autogluon_handler.py +0 -57
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autogluon_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/requirements.txt +0 -5
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/setup.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autosklearn_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autosklearn_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/autosklearn_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler/bigquery_handler.py +0 -169
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/binance_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/binance_handler/binance_handler.py +0 -143
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/byom_handler.py +0 -411
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/const.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/byom_handler/proc_wrapper.py +0 -175
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler/cassandra_handler.py +0 -60
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler/chromadb_handler.py +0 -395
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ckan_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ckan_handler/ckan_handler.py +0 -99
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler/clickhouse_handler.py +0 -210
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler/cloud_spanner_handler.py +0 -248
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_sql_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_sql_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cockroach_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cockroach_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/__init__.py +0 -20
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/cohere_handler.py +0 -134
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/cohere_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/__init__.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/confluence_handler.py +0 -87
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/confluence_handler/confluence_table.py +0 -120
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/couchbase_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/couchbase_handler/couchbase_handler.py +0 -237
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/crate_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/crate_handler/crate_handler.py +0 -211
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler/d0lt_handler.py +0 -12
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/databend_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/databend_handler/databend_handler.py +0 -224
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/databricks_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/databricks_handler/databricks_handler.py +0 -260
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler/datastax_handler.py +0 -12
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/db2_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/db2_handler/db2_handler.py +0 -264
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/derby_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/derby_handler/derby_handler.py +0 -248
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_handler.py +0 -137
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/dockerhub_tables.py +0 -509
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dockerhub_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/documentdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/documentdb_handler/documentdb_handler.py +0 -94
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/documentdb_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dremio_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dremio_handler/dremio_handler.py +0 -238
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler/druid_handler.py +0 -261
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler/duckdb_handler.py +0 -187
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler/dynamodb_handler.py +0 -231
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler/edgelessdb_handler.py +0 -64
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/elasticsearch_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/elasticsearch_handler/elasticsearch_handler.py +0 -251
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/__init__.py +0 -22
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/email_handler.py +0 -83
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/email_handler/email_helpers.py +0 -96
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler/empress_handler.py +0 -249
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/eventstoredb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/eventstoredb_handler/eventstoredb_handler.py +0 -212
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler/file_handler.py +0 -421
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler/tests/test_file_handler.py +0 -392
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/firebird_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/firebird_handler/firebird_handler.py +0 -270
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/flaml_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/flaml_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/flaml_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/frappe_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/frappe_handler/frappe_handler.py +0 -208
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/github_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/github_handler/github_handler.py +0 -160
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/github_handler/github_tables.py +0 -1313
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/gitlab_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/gitlab_handler/gitlab_handler.py +0 -85
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/gitlab_handler/gitlab_tables.py +0 -393
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/gmail_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/gmail_handler/gmail_handler.py +0 -585
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler/google_books_handler.py +0 -183
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_handler.py +0 -302
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_handler.py +0 -413
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_fit_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_fit_handler/google_fit_handler.py +0 -151
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_fit_handler/requirements.txt +0 -5
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_search_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_search_handler/google_search_handler.py +0 -220
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hackernews_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hackernews_handler/hn_handler.py +0 -100
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hana_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hana_handler/hana_handler.py +0 -308
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler/hive_handler.py +0 -191
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler/requirements.txt +0 -4
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hsqldb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/hsqldb_handler/hsqldb_handler.py +0 -232
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler/__init__.py +0 -18
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/huggingface_handler.py +0 -376
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/requirements.txt +0 -11
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_handler/setup.py +0 -25
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ignite_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ignite_handler/ignite_handler.py +0 -250
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/impala_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/impala_handler/impala_handler.py +0 -194
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/__init__.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/influxdb_handler.py +0 -117
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler/influxdb_tables.py +0 -81
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler/informix_handler.py +0 -318
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler/__about__.py +0 -10
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler/ingres_handler.py +0 -242
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/__init__.py +0 -27
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/jira_handler.py +0 -120
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/jira_handler/jira_table.py +0 -151
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/kinetica_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/kinetica_handler/kinetica_handler.py +0 -67
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/kinetica_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/langchain_embedding_handler.py +0 -205
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_embedding_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/langchain_handler.py +0 -414
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/mindsdb_database_agent.py +0 -154
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/requirements.txt +0 -7
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/langchain_handler/tools.py +0 -205
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/__init__.py +0 -22
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/requirements.txt +0 -4
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightfm_handler/setup.py +0 -32
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/__init__.py +0 -20
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/__init__.py +0 -17
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/functions.py +0 -229
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/lightwood_handler.py +0 -517
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/lightwood_handler/utils.py +0 -79
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler/setup.py +0 -32
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler/lindorm_handler.py +0 -218
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/__init__.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/llama_index_handler.py +0 -224
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/requirements.txt +0 -4
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/llama_index_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ludwig_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ludwig_handler/requirements.txt +0 -5
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ludwig_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mariadb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mariadb_handler/mariadb_handler.py +0 -11
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mariadb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler/materialize_handler.py +0 -55
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/matrixone_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/matrixone_handler/matrixone_handler.py +0 -215
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/maxdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/maxdb_handler/maxdb_handler.py +0 -224
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mediawiki_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_handler.py +0 -86
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mediawiki_handler/mediawiki_tables.py +0 -98
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mendeley_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mendeley_handler/mendeley_handler.py +0 -223
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/merlion_handler.py +0 -204
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/merlion_handler/setup.py +0 -28
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler/milvus_handler.py +0 -513
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mlflow_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mlflow_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler/monetdb_handler.py +0 -270
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/mongodb_handler.py +0 -313
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/monkeylearn_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/monkeylearn_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ms_teams_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_handler.py +0 -88
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ms_teams_handler/ms_teams_tables.py +0 -64
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mssql_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mssql_handler/mssql_handler.py +0 -149
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mysql_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mysql_handler/mysql_handler.py +0 -313
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/mysql_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/neuralforecast_handler.py +0 -137
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/neuralforecast_handler/setup.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/newsapi_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/__init__.py +0 -29
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/notion_handler.py +0 -236
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler/notion_table.py +0 -422
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler/api.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/nuo_jdbc_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/nuo_jdbc_handler/nuo_jdbc_handler.py +0 -291
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler/oceanbase_handler.py +0 -48
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_handler.py +0 -117
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi_tables.py +0 -208
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oilpriceapi_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ollama_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ollama_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/constants.py +0 -20
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/helpers.py +0 -147
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/openai_handler.py +0 -685
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openai_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openbb_handler/openbb_handler.py +0 -170
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openbb_handler/openbb_tables.py +0 -46
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/openbb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/opengauss_handler.py +0 -45
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oracle_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/oracle_handler/oracle_handler.py +0 -215
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler/orioledb_handler.py +0 -48
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/palm_handler.py +0 -446
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/palm_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/paypal_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/paypal_handler/paypal_handler.py +0 -141
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/paypal_handler/paypal_tables.py +0 -183
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pgvector_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pgvector_handler/pgvector_handler.py +0 -321
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pgvector_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler/phoenix_handler.py +0 -277
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinecone_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinecone_handler/pinecone_handler.py +0 -396
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinot_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinot_handler/pinot_handler.py +0 -268
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pirateweather_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/plaid_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/plaid_handler/plaid_handler.py +0 -224
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/planetscale_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/planetscale_handler/planetscale_handler.py +0 -45
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/planetscale_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/popularity_recommender_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/popularity_recommender_handler/__init__.py +0 -22
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/popularity_recommender_handler/setup.py +0 -32
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/postgres_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/postgres_handler/postgres_handler.py +0 -230
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/postgres_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pypi_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/pypi_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/qdrant_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/qdrant_handler/qdrant_handler.py +0 -476
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler/questdb_handler.py +0 -28
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/quickbooks_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_handler.py +0 -96
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/ingest.py +0 -175
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/rag.py +0 -141
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/rag_handler.py +0 -139
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/requirements.txt +0 -15
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/settings.py +0 -462
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rag_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ray_serve_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ray_serve_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/ray_serve_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/reddit_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/reddit_handler/reddit_handler.py +0 -103
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/redshift_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/redshift_handler/redshift_handler.py +0 -241
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/replicate_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/replicate_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rocket_chat_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_handler.py +0 -152
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler/rockset_handler.py +0 -56
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler/s3_handler.py +0 -247
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler/scylla_handler.py +0 -248
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sendinblue_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_handler.py +0 -93
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sendinblue_handler/sendinblue_tables.py +0 -61
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sentence_transformer_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sentence_transformer_handler/sentence_transformer_handler.py +0 -66
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sentence_transformer_handler/setup.py +0 -32
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_handler.py +0 -149
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler/sheets_handler.py +0 -195
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/shopify_handler.py +0 -142
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/shopify_handler/shopify_tables.py +0 -889
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler/singlestore_handler.py +0 -12
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/slack_handler.py +0 -544
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler/tests/test_slack.py +0 -29
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/snowflake_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/snowflake_handler/snowflake_handler.py +0 -136
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/solace_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/solace_handler/solace_handler.py +0 -167
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/solr_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/solr_handler/solr_handler.py +0 -219
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlany_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlany_handler/sqlany_handler.py +0 -225
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlite_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlite_handler/sqlite_handler.py +0 -194
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqreamdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqreamdb_handler/sqreamdb_handler.py +0 -206
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler/starrocks_handler.py +0 -48
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/setup.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/statsforecast_handler/statsforecast_handler.py +0 -185
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler/strapi_handler.py +0 -151
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler/tests/test_strapi_handler.py +0 -51
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/__init__.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/strava_handler.py +0 -113
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/strava_handler/strava_tables.py +0 -247
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/stripe_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/stripe_handler/stripe_handler.py +0 -101
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/stripe_handler/stripe_tables.py +0 -508
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler/supabase_handler.py +0 -11
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/surrealdb_handler.py +0 -243
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tdengine_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tdengine_handler/tdengine_handler.py +0 -183
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/teradata_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/teradata_handler/teradata_handler.py +0 -262
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler/tidb_handler.py +0 -45
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/timegpt_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/timegpt_handler/setup.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler/timescaledb_handler.py +0 -46
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tpot_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tpot_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tpot_handler/setup.py +0 -23
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler/requirements.txt +0 -3
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler/trino_handler.py +0 -181
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tripadvisor_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_handler.py +0 -276
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/twilio_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/twilio_handler/twilio_handler.py +0 -383
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/twitter_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/twitter_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/twitter_handler/twitter_handler.py +0 -469
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/utilities/query_utilities/base_query_utilities.py +0 -69
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/utilities/query_utilities/select_query_utilities.py +0 -152
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/requirements.txt +0 -2
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/setup.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/vertex_client.py +0 -86
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertex_handler/vertex_handler.py +0 -85
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertica_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertica_handler/vertica_handler.py +0 -200
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler/vitess_handler.py +0 -48
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/weaviate_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/weaviate_handler/weaviate_handler.py +0 -689
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/web_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/web_handler/urlcrawl_helpers.py +0 -311
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/web_handler/web_handler.py +0 -106
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/webz_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/webz_handler/webz_handler.py +0 -173
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/evaluate.py +0 -362
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/requirements.txt +0 -14
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/settings.py +0 -87
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/setup.py +0 -26
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/writer_handler/writer_handler.py +0 -189
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/xata_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/xata_handler/xata_handler.py +0 -419
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/__init__.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/youtube_handler.py +0 -112
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/youtube_handler/youtube_tables.py +0 -342
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler/yugabyte_handler.py +0 -66
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/__about__.py +0 -9
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/requirements.txt +0 -1
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_handler.py +0 -124
- MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase_tables.py +0 -499
- MindsDB-23.11.1.0/mindsdb/integrations/handlers_client/db_client_factory.py +0 -38
- MindsDB-23.11.1.0/mindsdb/integrations/handlers_client/db_grpc_client.py +0 -141
- MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/db_grpc_wrapper.py +0 -241
- MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/db_handler_service.py +0 -17
- MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/ml_grpc_wrapper.py +0 -180
- MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper/ml_handler_service.py +0 -31
- MindsDB-23.11.1.0/mindsdb/integrations/libs/base.py +0 -354
- MindsDB-23.11.1.0/mindsdb/integrations/libs/handler_helpers.py +0 -55
- MindsDB-23.11.1.0/mindsdb/integrations/libs/learn_process.py +0 -217
- MindsDB-23.11.1.0/mindsdb/integrations/libs/ml_exec_base.py +0 -398
- MindsDB-23.11.1.0/mindsdb/integrations/libs/response.py +0 -92
- MindsDB-23.11.1.0/mindsdb/integrations/libs/vectordatabase_handler.py +0 -554
- MindsDB-23.11.1.0/mindsdb/integrations/utilities/time_series_utils.py +0 -175
- MindsDB-23.11.1.0/mindsdb/integrations/utilities/utils.py +0 -12
- MindsDB-23.11.1.0/mindsdb/interfaces/agents/agents_controller.py +0 -244
- MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/chatbot_controller.py +0 -314
- MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/chatbot_executor.py +0 -163
- MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/chatbot_task.py +0 -104
- MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/model_executor.py +0 -105
- MindsDB-23.11.1.0/mindsdb/interfaces/chatbot/polling.py +0 -147
- MindsDB-23.11.1.0/mindsdb/interfaces/database/database.py +0 -93
- MindsDB-23.11.1.0/mindsdb/interfaces/database/integrations.py +0 -655
- MindsDB-23.11.1.0/mindsdb/interfaces/database/projects.py +0 -332
- MindsDB-23.11.1.0/mindsdb/interfaces/database/views.py +0 -103
- MindsDB-23.11.1.0/mindsdb/interfaces/file/file_controller.py +0 -128
- MindsDB-23.11.1.0/mindsdb/interfaces/jobs/jobs_controller.py +0 -406
- MindsDB-23.11.1.0/mindsdb/interfaces/jobs/scheduler.py +0 -144
- MindsDB-23.11.1.0/mindsdb/interfaces/knowledge_base/controller.py +0 -498
- MindsDB-23.11.1.0/mindsdb/interfaces/model/functions.py +0 -155
- MindsDB-23.11.1.0/mindsdb/interfaces/model/model_controller.py +0 -512
- MindsDB-23.11.1.0/mindsdb/interfaces/query_context/context_controller.py +0 -263
- MindsDB-23.11.1.0/mindsdb/interfaces/query_context/last_query.py +0 -183
- MindsDB-23.11.1.0/mindsdb/interfaces/skills/skills_controller.py +0 -156
- MindsDB-23.11.1.0/mindsdb/interfaces/storage/db.py +0 -539
- MindsDB-23.11.1.0/mindsdb/interfaces/storage/fs.py +0 -608
- MindsDB-23.11.1.0/mindsdb/interfaces/storage/json.py +0 -94
- MindsDB-23.11.1.0/mindsdb/interfaces/storage/model_fs.py +0 -250
- MindsDB-23.11.1.0/mindsdb/interfaces/stream/base/integration.py +0 -118
- MindsDB-23.11.1.0/mindsdb/interfaces/stream/stream.py +0 -24
- MindsDB-23.11.1.0/mindsdb/interfaces/tasks/task_monitor.py +0 -149
- MindsDB-23.11.1.0/mindsdb/interfaces/tasks/task_thread.py +0 -53
- MindsDB-23.11.1.0/mindsdb/interfaces/triggers/trigger_task.py +0 -93
- MindsDB-23.11.1.0/mindsdb/migrations/alembic.ini +0 -100
- MindsDB-23.11.1.0/mindsdb/migrations/env.py +0 -98
- MindsDB-23.11.1.0/mindsdb/migrations/migrate.py +0 -47
- MindsDB-23.11.1.0/mindsdb/migrations/versions/2021-11-30_17c3d2384711_init.py +0 -175
- MindsDB-23.11.1.0/mindsdb/utilities/fs.py +0 -164
- MindsDB-23.11.1.0/mindsdb/utilities/functions.py +0 -182
- MindsDB-23.11.1.0/mindsdb/utilities/hooks/profiling.py +0 -70
- MindsDB-23.11.1.0/mindsdb/utilities/json_encoder.py +0 -37
- MindsDB-23.11.1.0/mindsdb/utilities/log.py +0 -151
- MindsDB-23.11.1.0/mindsdb/utilities/ml_task_queue/consumer.py +0 -234
- MindsDB-23.11.1.0/mindsdb/utilities/ml_task_queue/producer.py +0 -77
- MindsDB-23.11.1.0/requirements/requirements-grpc.txt +0 -1
- MindsDB-23.11.1.0/requirements/requirements-telemetry.txt +0 -1
- MindsDB-23.11.1.0/requirements/requirements.txt +0 -47
- MindsDB-23.11.1.0/setup.py +0 -110
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/MANIFEST.in +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/MindsDB.egg-info/dependency_links.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/MindsDB.egg-info/top_level.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/common/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/gunicorn_wrapper.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/agents.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/chatbots.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/agents.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/analysis.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/auth.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/chatbots.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/config.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/databases.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/default.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/files.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/handlers.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/projects.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/skills.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/sql.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/tabs.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/tree.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/configs/util.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/databases.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/models.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/projects.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/tree.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/util.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/namespaces/views.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/http/utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/query_sql.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/responder.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/scram.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/classes/session.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/functions/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/add_shard.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/aggregate.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/buildinfo.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/coll_stats.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/company_id.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/connection_status.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/count.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/db_stats.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/delete.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/end_sessions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/find.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/get_cmd_line_opts.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/get_free_monitoring_status.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/get_parameter.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/getlog.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/host_info.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/is_master.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/is_master_lower.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/list_collections.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/list_databases.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/list_indexes.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/ping.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/recv_chunk_start.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/replsetgetstatus.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/sasl_continue.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/update_range_deletions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/responders/whatsmyuri.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/mysql → MindsDB-23.11.4.1/mindsdb/api/mongo/utilities}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/utilities/mongodb_ast.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/utilities/mongodb_parser.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mongo/utilities/mongodb_query.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy → MindsDB-23.11.4.1/mindsdb/api/mysql}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/classes → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/data_types → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/classes}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/client_capabilities.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/com_operators.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/fake_mysql_proxy/fake_mysql_proxy.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/server_capabilities.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/classes/sql_statement_parser.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/controllers/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/datahub/classes → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/data_types}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/binary_resultset_row_package.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_count_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/column_definition_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/command_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/eof_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/err_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/fast_auth_fail_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/handshake_response_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/ok_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/password_answer.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/resultset_row_package.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/stmt_prepare_header.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/data_types/mysql_packets/switch_auth_response_packet.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/mysql/mysql_proxy/external_libs → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/datahub/classes}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/classes/tables_row.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/datahub.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/datahub/datanodes/datanode.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/executor/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/executor/data_types.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/nlp → MindsDB-23.11.4.1/mindsdb/api/mysql/mysql_proxy/external_libs}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/external_libs/mysql_scramble.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/constants/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/constants/mysql.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/libs/constants/response_type.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/utilities/exceptions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/utilities/functions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/mysql/mysql_proxy/utilities/lightwood_dtype.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/postgres → MindsDB-23.11.4.1/mindsdb/api/nlp}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy → MindsDB-23.11.4.1/mindsdb/api/postgres}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/api/postgres/postgres_proxy/postgres_packets → MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/executor/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations → MindsDB-23.11.4.1/mindsdb/api/postgres/postgres_proxy/postgres_packets}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/errors.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_fields.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_formats.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/postgres_packets/postgres_message_identifiers.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/api/postgres/postgres_proxy/utilities/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers → MindsDB-23.11.4.1/mindsdb/integrations}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/access_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/aerospike_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/access_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/access_handler/tests/test_access_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/aerospike_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/airtable_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/aerospike_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aerospike_handler/tests/test_aerospike_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/airtable_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/airtable_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/altibase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/airtable_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/airtable_handler/tests/test_airtable_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/aurora_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/altibase_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/altibase_handler/tests/test_altibase_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/anomaly_detection_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anomaly_detection_handler/utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anthropic_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anyscale_endpoints_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anyscale_endpoints_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/anyscale_endpoints_handler/anyscale_endpoints_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/apache_doris_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/apache_doris_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/apache_doris_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/bigquery_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/aqicn_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/aurora_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_mysql_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/aurora_handler/tests/test_aurora_postgres_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autogluon_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autogluon_handler/config.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autokeras_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autokeras_handler/autokeras_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autosklearn_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autosklearn_handler/autosklearn_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/autosklearn_handler/config.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/bigquery_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/bigquery_handler/logo.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/chromadb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/bigquery_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/bigquery_handler/tests/test_bigquery_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/binance_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/binance_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/byom_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cassandra_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cassandra_handler/logo.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/ckan_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cassandra_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cassandra_handler/tests/test_cassandra_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/chromadb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/chromadb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/clickhouse_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/chromadb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/logo.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_spanner_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/ckan_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ckan_handler/tests/test_ckan_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/clickhouse_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cloud_sql_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/clickhouse_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/clickhouse_handler/tests/test_clickhouse_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_spanner_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_spanner_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cockroach_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_spanner_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_spanner_handler/tests/test_cloud_spanner_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/cloud_sql_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/couchbase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cloud_sql_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mssql_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cloud_sql_handler/tests/test_cloud_sql_mysql_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cockroach_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cockroach_handler/cockroach_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/crate_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/cockroach_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cockroach_handler/tests/test_cockroachdb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/cohere_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/frappe_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/coinbase_handler}/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/confluence_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/confluence_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/d0lt_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/confluence_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/databend_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/couchbase_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/couchbase_handler/tests/test_couchbase_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/databricks_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/crate_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/crate_handler/tests/test_crate_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/d0lt_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/d0lt_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/datastax_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/d0lt_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/d0lt_handler/tests/test_d0lt_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/db2_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/databend_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databend_handler/tests/test_databend_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/createdb.jpg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/createpred.jpg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/hivmetastore.jpg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/mindsdbdatabricks.jpg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/databricks/selectfrom.jpg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/derby_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/databricks_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/databricks_handler/tests/test_databricks_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/datastax_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/datastax_handler/logo.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/dremio_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/datastax_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/datastax_handler/tests/test_cassandra_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/druid_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/db2_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/db2_handler/tests/test_db2_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/duckdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/derby_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/derby_handler/tests/test_derby_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/influxdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler}/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/dynamodb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/discord_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dockerhub_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dockerhub_handler/dockerhub.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dockerhub_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/documentdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/documentdb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/edgelessdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/dremio_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dremio_handler/tests/test_dremio_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/druid_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/druid_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/elasticsearch_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/druid_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/druid_handler/tests/test_druid_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/duckdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/duckdb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/duckdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/duckdb_handler/tests/test_duckdb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dynamodb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dynamodb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/file_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/dynamodb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/dynamodb_handler/tests/test_dynamodb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/edgelessdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/edgelessdb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/firebird_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/edgelessdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/edgelessdb_handler/tests/test_edgelessdb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/gmail_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/elasticsearch_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/elasticsearch_handler/tests/test_elasticsearch_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/email_handler/email_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/email_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/empress_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/empress_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_books_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/empress_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/empress_handler/tests/test_empress_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/empress_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/eventbrite_handler}/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/eventstoredb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/eventstoredb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_calendar_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/faunadb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/file_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_content_shopping_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/file_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/file_handler/tests/data/test.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/google_search_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/firebird_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/firebird_handler/tests/test_firebird_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/flaml_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/flaml_handler/flaml_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/frappe_client.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/frappe_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/frappe_handler/icon.svg +0 -0
- /MindsDB-23.11.1.0/mindsdb/integrations/handlers/autokeras_handler/functions.py → /MindsDB-23.11.4.1/mindsdb/integrations/handlers/frappe_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/github_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/github_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/github_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gitlab_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gitlab_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gitlab_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/hive_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/gmail_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/tests/test_gmail_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/gmail_handler/utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/google_books_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/huggingface_api_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_books_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_books_handler/tests/test_google_books_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/google_calendar_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/ignite_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_calendar_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_calendar_handler/tests/test_google_calendar_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/google_content_shopping_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/impala_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_content_shopping_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_content_shopping_handler/tests/test_google_content_shopping_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_fit_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_fit_handler/google_fit_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_fit_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/google_search_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/informix_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/google_search_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/google_search_handler/tests/test_google_search_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hackernews_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hackernews_handler/hn_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hackernews_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hana_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hana_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hana_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hive_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hive_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/ingres_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/hive_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hive_handler/tests/test_hive_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hsqldb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hsqldb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/hsqldb_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/exceptions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/huggingface_api_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/lightwood_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/huggingface_api_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_api_handler/tests/test_huggingface_api_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_handler/finetune.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/huggingface_handler/settings.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/lindorm_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/ignite_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ignite_handler/tests/test_ignite_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/materialize_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/impala_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/impala_handler/tests/test_impala_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/influxdb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/informix_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/informix_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/matrixone_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/informix_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/informix_handler/tests/test_informix_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ingres_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ingres_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/maxdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/ingres_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ingres_handler/tests/test_ingres_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/jira_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/jira_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/kinetica_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/kinetica_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/mendeley_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lancedb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/langchain_embedding_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/langchain_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/milvus_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightdash_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightfm_handler/helpers.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightfm_handler/lightfm_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightfm_handler/settings.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lightwood_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lightwood_handler/tests/test_lightwood_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lindorm_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lindorm_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/monetdb_handler/utils → MindsDB-23.11.4.1/mindsdb/integrations/handlers/lindorm_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/lindorm_handler/tests/test_lindorm_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/functions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/ludwig_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ludwig_handler/utils.py +0 -0
- /MindsDB-23.11.1.0/mindsdb/integrations/handlers/mongodb_handler/utils/__init__.py → /MindsDB-23.11.4.1/mindsdb/integrations/handlers/luma_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mariadb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mariadb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/materialize_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/materialize_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/mssql_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/materialize_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/materialize_handler/tests/test_materialize_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/newsapi_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/matrixone_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/matrixone_handler/tests/test_matrixone_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/notion_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/maxdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/maxdb_handler/tests/test_maxdb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mediawiki_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mediawiki_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mediawiki_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/mendeley_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/npm_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mendeley_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mendeley_handler/tests/test_mendeley_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/merlion_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/merlion_handler/adapters.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/milvus_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/milvus_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/nuo_jdbc_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/milvus_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mlflow_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mlflow_handler/mlflow_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mlflow_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/oceanbase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/tests/test_monetdb_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/opengauss_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers/monetdb_handler/utils}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monetdb_handler/utils/monet_get_id.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mongodb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mongodb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/oracle_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mongodb_handler/utils}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mongodb_handler/utils/mongodb_render.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monkeylearn_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monkeylearn_handler/monkeylearn_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/monkeylearn_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ms_teams_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ms_teams_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ms_teams_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/orioledb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mssql_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mssql_handler/tests/test_mssql_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mysql_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/mysql_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/apache_doris_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/mysql_handler}/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/neuralforecast_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/newsapi_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/phoenix_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/newsapi_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/newsapi_handler/tests/test_newsapi_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/notion_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/notion_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinecone_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/notion_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/notion_handler/tests/test_notion_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/npm_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/npm_handler/npm_tables.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/pinot_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/npm_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/questdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/nuo_jdbc_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/nuo_jdbc_handler/tests/test_nuo_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oceanbase_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oceanbase_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/redshift_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/oceanbase_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oceanbase_handler/tests/test_oceanbase_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oilpriceapi_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oilpriceapi_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oilpriceapi_handler/oilpriceapi.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ollama_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ollama_handler/ollama_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openai_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openbb_handler/__about__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openbb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/openbb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/opengauss_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/rockset_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/opengauss_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/opengauss_handler/tests/test_opengauss_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/s3_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/openstreetmap_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/scylla_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/oracle_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/oracle_handler/tests/test_oracle_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/orioledb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/orioledb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sharepoint_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/orioledb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/orioledb_handler/tests/test_orioledb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/palm_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/paypal_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/paypal_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/paypal_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pgvector_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pgvector_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/phoenix_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/phoenix_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sheets_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/phoenix_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/phoenix_handler/tests/test_phoenix_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinecone_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinecone_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinecone_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/singlestore_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinecone_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/slack_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/pinot_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pinot_handler/tests/test_pinot_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pirateweather_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pirateweather_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pirateweather_handler/pirateweather_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/plaid_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/plaid_handler/utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/planetscale_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/planetscale_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/popularity_recommender_handler/popularity_recommender_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/popularity_recommender_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/postgres_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/postgres_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/snowflake_handler/tests → MindsDB-23.11.4.1/mindsdb/integrations/handlers/pycaret_handler/test}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/api.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/pypi_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/pypi_handler/pypi_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/qdrant_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/qdrant_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/qdrant_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/questdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/questdb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/solr_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/questdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/questdb_handler/tests/test_questdb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/quickbooks_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/quickbooks_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rag_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rag_handler/exceptions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ray_serve_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/ray_serve_handler/ray_serve_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/reddit_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/reddit_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqlite_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/redshift_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/redshift_handler/tests/test_redshift_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/assets/Arjuna.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/assets/groot.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/assets/warrior.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/replicate_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/replicate_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rocket_chat_handler/rocket_chat_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/sqreamdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/rockset_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/tests/test.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/tests/test2.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/rockset_handler/tests/test_rockset_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/s3_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/s3_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/starrocks_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/s3_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/s3_handler/tests/test_s3_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/strapi_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sap_erp_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/scylla_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/scylla_handler/logo.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/cassandra_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler}/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/supabase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/scylla_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/scylla_handler/tests/test_scylla_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sendinblue_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sendinblue_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sendinblue_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sentence_transformer_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sentence_transformer_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sentence_transformer_handler/settings.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_api.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/sharepoint_tables.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sharepoint_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/tests/test_sharepoint_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sharepoint_handler/utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sheets_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sheets_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/surrealdb_handler/utils → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sheets_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sheets_handler/tests/test_sheets_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/shopify_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/shopify_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/singlestore_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/tdengine_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/singlestore_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/singlestore_handler/tests/test_singlestore_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/slack_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/slack_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/tidb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/slack_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/snowflake_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/snowflake_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/timescaledb_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/snowflake_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/snowflake_handler/tests/test_snowflake_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solace_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solace_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solace_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/solr.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/trino_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/solr_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/solr_handler/tests/test_solr_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlany_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlany_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlany_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlite_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlite_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/utilities → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqlite_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqlite_handler/tests/test_sqlite_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/vertica_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/sqreamdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/sqreamdb_handler/tests/test_sqreamdb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/starrocks_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/starrocks_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/vitess_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/starrocks_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/starrocks_handler/tests/test_starrocks_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/statsforecast_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strapi_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strapi_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strapi_handler/strapi_tables.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/xata_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/strapi_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strava_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/strava_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/stripe_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/stripe_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/stripe_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/supabase_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/supabase_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/yugabyte_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/supabase_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/supabase_handler/tests/test_supabase_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers/zipcodebase_handler → MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler}/tests/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/tests/test_surrealdb_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers_client → MindsDB-23.11.4.1/mindsdb/integrations/handlers/surrealdb_handler/utils}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/surrealdb_handler/utils/surreal_get_info.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/handlers_wrapper → MindsDB-23.11.4.1/mindsdb/integrations/handlers/tdengine_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tdengine_handler/tests/test_tdengine_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/teradata_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/teradata_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/teradata_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tidb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/utilities → MindsDB-23.11.4.1/mindsdb/integrations/handlers/tidb_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tidb_handler/tests/test_tidb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timegpt_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timegpt_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timegpt_handler/timegpt_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timescaledb_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timescaledb_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/integrations/utilities/datasets → MindsDB-23.11.4.1/mindsdb/integrations/handlers/timescaledb_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/timescaledb_handler/tests/test_timescaledb_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tpot_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tpot_handler/tpot_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/icon.png +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/agents → MindsDB-23.11.4.1/mindsdb/integrations/handlers/trino_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/tests/test_trino_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/trino_handler/trino_config_provider.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_api.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/tripadvisor_handler/tripadvisor_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twilio_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twilio_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twilio_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twitter_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/twitter_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/database → MindsDB-23.11.4.1/mindsdb/integrations/handlers/utilities}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/delete_query_utilities.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/exceptions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/insert_query_utilities.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/utilities/query_utilities/update_query_utilities.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertex_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/file → MindsDB-23.11.4.1/mindsdb/integrations/handlers/vertica_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vertica_handler/tests/test_vertica_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vitess_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vitess_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/jobs → MindsDB-23.11.4.1/mindsdb/integrations/handlers/vitess_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/vitess_handler/tests/test_vitess_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/weaviate_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/weaviate_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/weaviate_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/web_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/web_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/web_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/knowledge_base → MindsDB-23.11.4.1/mindsdb/integrations/handlers/web_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/webz_handler/webz_tables.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/writer_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/writer_handler/ingest.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/writer_handler/rag.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/xata_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/xata_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/xata_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/model → MindsDB-23.11.4.1/mindsdb/integrations/handlers/xata_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/youtube_handler/icon.png +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/youtube_handler/requirements.txt +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/yugabyte_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/yugabyte_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/query_context → MindsDB-23.11.4.1/mindsdb/integrations/handlers/yugabyte_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/yugabyte_handler/tests/test_yugabyte_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/zipcodebase_handler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/zipcodebase_handler/icon.svg +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/stream → MindsDB-23.11.4.1/mindsdb/integrations/handlers/zipcodebase_handler/tests}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/handlers/zipcodebase_handler/zipcodebase.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/tasks → MindsDB-23.11.4.1/mindsdb/integrations/handlers_client}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/interfaces/triggers → MindsDB-23.11.4.1/mindsdb/integrations/handlers_wrapper}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/api_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/api_handler_exceptions.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/const.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/llm_utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/net_helpers.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/process_cache.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/realtime_chat_handler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/libs/storage_handler.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/microservices_grpc → MindsDB-23.11.4.1/mindsdb/integrations/utilities}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/microservices_grpc/db → MindsDB-23.11.4.1/mindsdb/integrations/utilities/datasets}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/datasets/dataset.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/datasets/question_answering/fda_style_qa.csv +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/datasets/question_answering/squad_v2_val_100_sample.csv +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/date_utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/handler_utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/install.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/processes.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/sql_utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/integrations/utilities/test_utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/microservices_grpc/executor → MindsDB-23.11.4.1/mindsdb/interfaces/agents}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/chatbot/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/chatbot/memory.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/chatbot/types.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/microservices_grpc/ml → MindsDB-23.11.4.1/mindsdb/interfaces/database}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/migrations → MindsDB-23.11.4.1/mindsdb/interfaces/file}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/migrations/versions → MindsDB-23.11.4.1/mindsdb/interfaces/jobs}/__init__.py +0 -0
- {MindsDB-23.11.1.0/mindsdb/utilities → MindsDB-23.11.4.1/mindsdb/interfaces/knowledge_base}/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/skills/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/storage/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/stream/base/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/stream/utilities.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/tasks/task.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/interfaces/triggers/triggers_controller.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/common_pb2.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/common_pb2_grpc.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/db_pb2.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/db/db_pb2_grpc.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/executor/executor_pb2.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/executor/executor_pb2_grpc.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/common_pb2.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/common_pb2_grpc.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/ml_pb2.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/microservices_grpc/ml/ml_pb2_grpc.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-01-26_47f97b83cee4_views.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-02-09_27c5aca9e47e_db_files.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-05-25_d74c189b87e6_predictor_integration.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-07-08_999bceb904df_integration_args.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-07-15_b5b53e0ea7f8_training_data_rows_columns_count.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-07-22_6e834843e7e9_training_time.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-08-19_976f15a37e6a_predictors_versioning.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-08-25_6a54ba55872e_view_integration.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-08-29_473e8f239481_straighten.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-06_96d5fef10caa_data_integration_id.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-08_87b2df2b83e1_predictor_status.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-19_3d5e70105df7_content_storage.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-09-29_cada7d2be947_json_storage.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-10-14_43c52d23845a_projects.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-11-07_1e60096fc817_predictor_version.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-11-11_d429095b570f_data_integration_id.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2022-12-26_459218b0844c_fix_unique_constraint.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-02_b6d0a47294ac_jobs.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-17_ee63d868fa84_predictor_integration_null.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-25_3154382dab17_training_progress.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-02-27_ef04cdbe51ed_jobs_user_class.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-04-11_b8be148dbc85_jobs_history_query.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-05-24_6d748f2c7b0b_remove_streams.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-05-31_aaecd7012a78_chatbot.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-06-16_9d6271bb2c38_update_chat_bots_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-06-19_b5bf593ba659_create_chat_bots_history_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-06-27_607709e1615b_update_project_names.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-07-13_a57506731839_triggers.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-07-19_ad04ee0bd385_chatbot_to_task.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-08-29_b0382f5be48d_predictor_hostname.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-08-31_4c26ad04eeaa_add_skills_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-06_d44ab65a6a35_add_agents_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-06_e187961e844a_add_agent_skills_table.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-18_011e6f2dd9c2_backfill_agent_id.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-18_f16d4ab03091_add_agent_id.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-09-20_309db3d07cf4_add_knowledge_base.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/migrations/versions/2023-10-03_6cb02dfd7f61_query_context.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/auth.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/cache.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/config.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/context.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/hooks/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/log_controller.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/base.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/const.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/task.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ml_task_queue/utils.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/profiler/__init__.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/profiler/profiler.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/ps.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/telemetry.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/mindsdb/utilities/wizards.py +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/pyproject.toml +0 -0
- {MindsDB-23.11.1.0 → MindsDB-23.11.4.1}/setup.cfg +0 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
|
|
2
|
+
# Understanding the Diverse Licensing Structure of MindsDB's Repo
|
|
3
|
+
|
|
4
|
+
1. MindsDB Core: The MindsDB Core component specifically uses the Elastic License 2.0. This is a distinct license that applies to this particular part of the project.
|
|
5
|
+
|
|
6
|
+
2. License File in Work's Directory: If there is a LICENSE file located in the same directory as the work, that license will apply to the work:
|
|
7
|
+
* `/mindsdb/integraions` directory that contains all integrations is Licensed under MIT License.
|
|
8
|
+
|
|
9
|
+
3. Default to Elastic License 2.0: If no specific LICENSE file is found following the above rules, the work defaults to being licensed under the Elastic License 2.0.
|
|
10
|
+
|
|
11
|
+
For any questions or clarifications regarding licensing, please contact us at (admin@mindsdb.com).
|
|
12
|
+
|
|
13
|
+
------------------------------------------------------------------------------------
|
|
14
|
+
## MIT License
|
|
15
|
+
|
|
16
|
+
Copyright (c) 2019 MindsDB, Inc.
|
|
17
|
+
|
|
18
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
19
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
20
|
+
in the Software without restriction, including without limitation the rights
|
|
21
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
22
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
23
|
+
furnished to do so, subject to the following conditions:
|
|
24
|
+
|
|
25
|
+
The above copyright notice and this permission notice shall be included in all
|
|
26
|
+
copies or substantial portions of the Software.
|
|
27
|
+
|
|
28
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
29
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
30
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
31
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
32
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
33
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
34
|
+
SOFTWARE.
|
|
35
|
+
|
|
36
|
+
------------------------------------------------------------------------------------
|
|
37
|
+
|
|
38
|
+
# Elastic License 2.0 (ELv2)
|
|
39
|
+
|
|
40
|
+
### Acceptance
|
|
41
|
+
|
|
42
|
+
By using the software, you agree to all of the terms and conditions below.
|
|
43
|
+
|
|
44
|
+
### Copyright License
|
|
45
|
+
|
|
46
|
+
The licensor grants you a non-exclusive, royalty-free, worldwide, non-sublicensable, non-transferable license to use, copy, distribute, make available, and prepare derivative works of the software, in each case subject to the limitations and conditions below.
|
|
47
|
+
|
|
48
|
+
### Limitations
|
|
49
|
+
|
|
50
|
+
You may not provide the software to third parties as a hosted or managed service, where the service provides users with access to any substantial set of the features or functionality of the software.
|
|
51
|
+
You may not move, change, disable, or circumvent the license key functionality in the software, and you may not remove or obscure any functionality in the software that is protected by the license key.
|
|
52
|
+
You may not alter, remove, or obscure any licensing, copyright, or other notices of the licensor in the software. Any use of the licensor’s trademarks is subject to applicable law.
|
|
53
|
+
|
|
54
|
+
### Patents
|
|
55
|
+
The licensor grants you a license, under any patent claims the licensor can license, or becomes able to license, to make, have made, use, sell, offer for sale, import and have imported the software, in each case subject to the limitations and conditions in this license. This license does not cover any patent claims that you cause to be infringed by modifications or additions to the software. If you or your company make any written claim that the software infringes or contributes to infringement of any patent, your patent license for the software granted under these terms ends immediately. If your company makes such a claim, your patent license ends immediately for work on behalf of your company.
|
|
56
|
+
|
|
57
|
+
### Notices
|
|
58
|
+
|
|
59
|
+
You must ensure that anyone who gets a copy of any part of the software from you also gets a copy of these terms.
|
|
60
|
+
If you modify the software, you must include in any modified copies of the software prominent notices stating that you have modified the software.
|
|
61
|
+
|
|
62
|
+
### No Other Rights
|
|
63
|
+
|
|
64
|
+
These terms do not imply any licenses other than those expressly granted in these terms.
|
|
65
|
+
|
|
66
|
+
### Termination
|
|
67
|
+
|
|
68
|
+
If you use the software in violation of these terms, such use is not licensed, and your licenses will automatically terminate. If the licensor provides you with a notice of your violation, and you cease all violation of this license no later than 30 days after you receive that notice, your licenses will be reinstated retroactively. However, if you violate these terms after such reinstatement, any additional violation of these terms will cause your licenses to terminate automatically and permanently.
|
|
69
|
+
|
|
70
|
+
### No Liability
|
|
71
|
+
|
|
72
|
+
As far as the law allows, the software comes as is, without any warranty or condition, and the licensor will not be liable to you for any damages arising out of these terms or the use or nature of the software, under any kind of legal claim.
|
|
73
|
+
|
|
74
|
+
### Definitions
|
|
75
|
+
|
|
76
|
+
The licensor is the entity offering these terms, and the software is the software the licensor makes available under these terms, including any portion of it.
|
|
77
|
+
|
|
78
|
+
**you** refers to the individual or entity agreeing to these terms.
|
|
79
|
+
|
|
80
|
+
**your company** is any legal entity, sole proprietorship, or other kind of organization that you work for, plus all organizations that have control over, are under the control of, or are under common control with that organization. control means ownership of substantially all the assets of an entity, or the power to direct its management and policies by vote, contract, or otherwise. Control can be direct or indirect.
|
|
81
|
+
|
|
82
|
+
**your licenses** are all the licenses granted to you for the software under these terms.
|
|
83
|
+
|
|
84
|
+
**use** means anything you do with the software requiring one of your licenses.
|
|
85
|
+
|
|
86
|
+
**trademark** means trademarks, service marks, and similar rights.
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: MindsDB
|
|
3
|
+
Version: 23.11.4.1
|
|
4
|
+
Summary: MindsDB server, provides server capabilities to mindsdb native python library
|
|
5
|
+
Home-page: https://github.com/mindsdb/mindsdb
|
|
6
|
+
Download-URL: https://pypi.org/project/mindsdb/
|
|
7
|
+
Author: MindsDB Inc
|
|
8
|
+
Author-email: jorge@mindsdb.com
|
|
9
|
+
License: ELv2
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Provides-Extra: test
|
|
15
|
+
Provides-Extra: grpc
|
|
16
|
+
Provides-Extra: dev
|
|
17
|
+
Provides-Extra: all_extras
|
|
18
|
+
Provides-Extra: cohere
|
|
19
|
+
Provides-Extra: mongodb
|
|
20
|
+
Provides-Extra: google_calendar
|
|
21
|
+
Provides-Extra: orioledb
|
|
22
|
+
Provides-Extra: youtube
|
|
23
|
+
Provides-Extra: coinbase
|
|
24
|
+
Provides-Extra: oracle
|
|
25
|
+
Provides-Extra: sentence_transformer
|
|
26
|
+
Provides-Extra: lindorm
|
|
27
|
+
Provides-Extra: discord
|
|
28
|
+
Provides-Extra: opengauss
|
|
29
|
+
Provides-Extra: chromadb
|
|
30
|
+
Provides-Extra: influxdb
|
|
31
|
+
Provides-Extra: nuo_jdbc
|
|
32
|
+
Provides-Extra: sendinblue
|
|
33
|
+
Provides-Extra: merlion
|
|
34
|
+
Provides-Extra: confluence
|
|
35
|
+
Provides-Extra: frappe
|
|
36
|
+
Provides-Extra: cloud_sql
|
|
37
|
+
Provides-Extra: openbb
|
|
38
|
+
Provides-Extra: flaml
|
|
39
|
+
Provides-Extra: huggingface
|
|
40
|
+
Provides-Extra: huggingface-cpu
|
|
41
|
+
Provides-Extra: pinecone
|
|
42
|
+
Provides-Extra: empress
|
|
43
|
+
Provides-Extra: reddit
|
|
44
|
+
Provides-Extra: timegpt
|
|
45
|
+
Provides-Extra: eventbrite
|
|
46
|
+
Provides-Extra: symbl
|
|
47
|
+
Provides-Extra: couchbase
|
|
48
|
+
Provides-Extra: slack
|
|
49
|
+
Provides-Extra: strava
|
|
50
|
+
Provides-Extra: quickbooks
|
|
51
|
+
Provides-Extra: redshift
|
|
52
|
+
Provides-Extra: file
|
|
53
|
+
Provides-Extra: github
|
|
54
|
+
Provides-Extra: vitess
|
|
55
|
+
Provides-Extra: web
|
|
56
|
+
Provides-Extra: luma
|
|
57
|
+
Provides-Extra: impala
|
|
58
|
+
Provides-Extra: tdengine
|
|
59
|
+
Provides-Extra: huggingface_api
|
|
60
|
+
Provides-Extra: ignite
|
|
61
|
+
Provides-Extra: hive
|
|
62
|
+
Provides-Extra: teradata
|
|
63
|
+
Provides-Extra: d0lt
|
|
64
|
+
Provides-Extra: google_books
|
|
65
|
+
Provides-Extra: edgelessdb
|
|
66
|
+
Provides-Extra: matrixone
|
|
67
|
+
Provides-Extra: elasticsearch
|
|
68
|
+
Provides-Extra: xata
|
|
69
|
+
Provides-Extra: google_fit
|
|
70
|
+
Provides-Extra: supabase
|
|
71
|
+
Provides-Extra: solace
|
|
72
|
+
Provides-Extra: weaviate
|
|
73
|
+
Provides-Extra: altibase
|
|
74
|
+
Provides-Extra: openstreetmap
|
|
75
|
+
Provides-Extra: lightfm
|
|
76
|
+
Provides-Extra: ms_teams
|
|
77
|
+
Provides-Extra: hana
|
|
78
|
+
Provides-Extra: access
|
|
79
|
+
Provides-Extra: bigquery
|
|
80
|
+
Provides-Extra: autosklearn
|
|
81
|
+
Provides-Extra: vertica
|
|
82
|
+
Provides-Extra: crate
|
|
83
|
+
Provides-Extra: twitter
|
|
84
|
+
Provides-Extra: snowflake
|
|
85
|
+
Provides-Extra: druid
|
|
86
|
+
Provides-Extra: statsforecast
|
|
87
|
+
Provides-Extra: statsforecast-extra
|
|
88
|
+
Provides-Extra: hubspot
|
|
89
|
+
Provides-Extra: aerospike
|
|
90
|
+
Provides-Extra: jira
|
|
91
|
+
Provides-Extra: singlestore
|
|
92
|
+
Provides-Extra: firebird
|
|
93
|
+
Provides-Extra: stripe
|
|
94
|
+
Provides-Extra: db2
|
|
95
|
+
Provides-Extra: writer
|
|
96
|
+
Provides-Extra: llama_index
|
|
97
|
+
Provides-Extra: rocket_chat
|
|
98
|
+
Provides-Extra: databricks
|
|
99
|
+
Provides-Extra: milvus
|
|
100
|
+
Provides-Extra: documentdb
|
|
101
|
+
Provides-Extra: dremio
|
|
102
|
+
Provides-Extra: mssql
|
|
103
|
+
Provides-Extra: langchain_embedding
|
|
104
|
+
Provides-Extra: stabilityai
|
|
105
|
+
Provides-Extra: timescaledb
|
|
106
|
+
Provides-Extra: mlflow
|
|
107
|
+
Provides-Extra: notion
|
|
108
|
+
Provides-Extra: sqlany
|
|
109
|
+
Provides-Extra: google_content_shopping
|
|
110
|
+
Provides-Extra: autogluon
|
|
111
|
+
Provides-Extra: oceanbase
|
|
112
|
+
Provides-Extra: ckan
|
|
113
|
+
Provides-Extra: cockroach
|
|
114
|
+
Provides-Extra: langchain
|
|
115
|
+
Provides-Extra: monetdb
|
|
116
|
+
Provides-Extra: trino
|
|
117
|
+
Provides-Extra: sqreamdb
|
|
118
|
+
Provides-Extra: gitlab
|
|
119
|
+
Provides-Extra: maxdb
|
|
120
|
+
Provides-Extra: paypal
|
|
121
|
+
Provides-Extra: rockset
|
|
122
|
+
Provides-Extra: solr
|
|
123
|
+
Provides-Extra: shopify
|
|
124
|
+
Provides-Extra: tidb
|
|
125
|
+
Provides-Extra: webz
|
|
126
|
+
Provides-Extra: anthropic
|
|
127
|
+
Provides-Extra: tpot
|
|
128
|
+
Provides-Extra: apache_doris
|
|
129
|
+
Provides-Extra: popularity_recommender
|
|
130
|
+
Provides-Extra: lancedb
|
|
131
|
+
Provides-Extra: derby
|
|
132
|
+
Provides-Extra: lightwood
|
|
133
|
+
Provides-Extra: autokeras
|
|
134
|
+
Provides-Extra: scylla
|
|
135
|
+
Provides-Extra: qdrant
|
|
136
|
+
Provides-Extra: clickhouse
|
|
137
|
+
Provides-Extra: phoenix
|
|
138
|
+
Provides-Extra: questdb
|
|
139
|
+
Provides-Extra: byom
|
|
140
|
+
Provides-Extra: replicate
|
|
141
|
+
Provides-Extra: pgvector
|
|
142
|
+
Provides-Extra: pinot
|
|
143
|
+
Provides-Extra: materialize
|
|
144
|
+
Provides-Extra: yugabyte
|
|
145
|
+
Provides-Extra: planetscale
|
|
146
|
+
Provides-Extra: starrocks
|
|
147
|
+
Provides-Extra: twilio
|
|
148
|
+
Provides-Extra: anomaly_detection
|
|
149
|
+
Provides-Extra: cassandra
|
|
150
|
+
Provides-Extra: ingres
|
|
151
|
+
Provides-Extra: informix
|
|
152
|
+
Provides-Extra: palm
|
|
153
|
+
Provides-Extra: anyscale_endpoints
|
|
154
|
+
Provides-Extra: binance
|
|
155
|
+
Provides-Extra: openai
|
|
156
|
+
Provides-Extra: mediawiki
|
|
157
|
+
Provides-Extra: mendeley
|
|
158
|
+
Provides-Extra: databend
|
|
159
|
+
Provides-Extra: cloud_spanner
|
|
160
|
+
Provides-Extra: gmail
|
|
161
|
+
Provides-Extra: hsqldb
|
|
162
|
+
Provides-Extra: mariadb
|
|
163
|
+
Provides-Extra: kinetica
|
|
164
|
+
Provides-Extra: newsapi
|
|
165
|
+
Provides-Extra: monkeylearn
|
|
166
|
+
Provides-Extra: mysql
|
|
167
|
+
Provides-Extra: google_search
|
|
168
|
+
Provides-Extra: aurora
|
|
169
|
+
Provides-Extra: surrealdb
|
|
170
|
+
Provides-Extra: datastax
|
|
171
|
+
Provides-Extra: pycaret
|
|
172
|
+
Provides-Extra: spacy
|
|
173
|
+
Provides-Extra: plaid
|
|
174
|
+
Provides-Extra: ludwig
|
|
175
|
+
Provides-Extra: rag
|
|
176
|
+
Provides-Extra: neuralforecast
|
|
177
|
+
Provides-Extra: neuralforecast-extra
|
|
178
|
+
Provides-Extra: faunadb
|
|
179
|
+
Provides-Extra: all_handlers_extras
|
|
180
|
+
License-File: LICENSE
|
|
181
|
+
|
|
182
|
+
<h1 align="center">
|
|
183
|
+
<img width="300" src="https://github.com/mindsdb/mindsdb_native/blob/stable/assets/MindsDBColorPurp@3x.png?raw=true" alt="MindsDB">
|
|
184
|
+
<br>
|
|
185
|
+
</h1>
|
|
186
|
+
|
|
187
|
+
<div align="center">
|
|
188
|
+
|
|
189
|
+
<a
|
|
190
|
+
href="https://runacap.com/ross-index/annual-2022/"
|
|
191
|
+
target="_blank"
|
|
192
|
+
rel="noopener"
|
|
193
|
+
/>
|
|
194
|
+
<img
|
|
195
|
+
style="width: 260px; height: 56px"
|
|
196
|
+
src="https://runacap.com/wp-content/uploads/2023/02/Annual_ROSS_badge_white_2022.svg"
|
|
197
|
+
alt="ROSS Index - Fastest Growing Open-Source Startups | Runa Capital"
|
|
198
|
+
width="260"
|
|
199
|
+
height="56"
|
|
200
|
+
/>
|
|
201
|
+
</a>
|
|
202
|
+
|
|
203
|
+
<p>
|
|
204
|
+
<a href="https://github.com/mindsdb/mindsdb/actions"><img src="https://github.com/mindsdb/mindsdb/actions/workflows/release.yml/badge.svg" alt="MindsDB Release"></a>
|
|
205
|
+
<a href="https://www.python.org/downloads/" target="_blank"><img src="https://img.shields.io/badge/python-3.8.x%7C%203.9.x%7C%203.10.x%7C%203.11.x-brightgreen.svg" alt="Python supported"></a>
|
|
206
|
+
<a href="https://pypi.org/project/MindsDB/" target="_blank"><img src="https://badge.fury.io/py/MindsDB.svg" alt="PyPi Version"></a>
|
|
207
|
+
<br />
|
|
208
|
+
<img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/Mindsdb"> <a href="https://hub.docker.com/u/mindsdb" target="_blank"><img src="https://img.shields.io/docker/pulls/mindsdb/mindsdb" alt="Docker pulls"></a>
|
|
209
|
+
<a href="https://ossrank.com/p/630"><img src="https://shields.io/endpoint?url=https://ossrank.com/shield/630"></a>
|
|
210
|
+
<a href="https://www.mindsdb.com/"><img src="https://img.shields.io/website?url=https%3A%2F%2Fwww.mindsdb.com%2F" alt="MindsDB Website"></a>
|
|
211
|
+
<a href="https://mindsdb.com/joincommunity" target="_blank"><img src="https://img.shields.io/badge/slack-@mindsdbcommunity-brightgreen.svg?logo=slack " alt="MindsDB Community"></a>
|
|
212
|
+
<br />
|
|
213
|
+
<a href="https://deepnote.com/project/Machine-Learning-With-SQL-8GDF7bc7SzKlhBLorqoIcw/%2Fmindsdb_demo.ipynb" target="_blank"><img src="https://deepnote.com/buttons/launch-in-deepnote-white.svg" alt="Launch in Deepnote"></a>
|
|
214
|
+
<br />
|
|
215
|
+
<a href="https://gitpod.io/#https://github.com/mindsdb/mindsdb" target="_blank"><img src="https://gitpod.io/button/open-in-gitpod.svg" alt="Open in Gitpod"></a>
|
|
216
|
+
</p>
|
|
217
|
+
|
|
218
|
+
<h3 align="center">
|
|
219
|
+
<a href="https://www.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Website</a>
|
|
220
|
+
<span> | </span>
|
|
221
|
+
<a href="https://docs.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Docs</a>
|
|
222
|
+
<span> | </span>
|
|
223
|
+
<a href="https://mindsdb.com/joincommunity">Community Slack</a>
|
|
224
|
+
<span> | </span>
|
|
225
|
+
<a href="https://github.com/mindsdb/mindsdb/projects?type=classic">Contribute</a>
|
|
226
|
+
<span> | </span>
|
|
227
|
+
<a href="https://cloud.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo">Demo</a>
|
|
228
|
+
<span> | </span>
|
|
229
|
+
<a href="https://mindsdb.com/hackerminds-ai-app-challenge">Hackathon</a>
|
|
230
|
+
</h3>
|
|
231
|
+
|
|
232
|
+
</div>
|
|
233
|
+
|
|
234
|
+
----------------------------------------
|
|
235
|
+
|
|
236
|
+
[MindsDB's](https://mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) **AI Virtual Database** empowers developers to connect any AI/ML model to any datasource. This includes relational and non-relational databases, data warehouses and SaaS applications.
|
|
237
|
+
[](https://twitter.com/intent/tweet?text=Build%20AI-Centered%20Applications%20&url=https://www.mindsdb.com&via=mindsdb&hashtags=ai,ml,nlp,machine_learning,neural_networks,databases,gpt3)
|
|
238
|
+
|
|
239
|
+
MindsDB offers two primary benefits to its users.
|
|
240
|
+
1. Hook AI models to run automatically as new data is observed and plug the output into any of our integrations.
|
|
241
|
+
2. Automate training and finetuning AI models from data contained in any of the 130+ datasources we support.
|
|
242
|
+
|
|
243
|
+
<img width="1089" alt="image" src="https://github.com/mindsdb/mindsdb/assets/5898506/5451fe7e-a854-4c53-b34b-769b6c7c9863">
|
|
244
|
+
|
|
245
|
+
[Installation](#Installation)- [How it works](#Howitworks) - [DatabaseIntegrations](#DatabaseIntegrations) - [Documentation](#Documentation) - [Support](#Support) - [Contributing](#Contributing)
|
|
246
|
+
[Current contributors](#Currentcontributors) - [License](#License)
|
|
247
|
+
|
|
248
|
+
----------------------------------------
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
## Installation <a name="Installation"></a>
|
|
254
|
+
|
|
255
|
+
The preferred way is to use MindsDB Cloud [free demo instance](https://cloud.mindsdb.com/home) or use a [dedicated instance](https://cloud.mindsdb.com/home). If you want to move to production, use [the AWS AMI image](https://aws.amazon.com/marketplace/seller-profile?id=03a65520-86ca-4ab8-a394-c11eb54573a9).
|
|
256
|
+
|
|
257
|
+
To install locally or on-premise, pull the latest Docker image:
|
|
258
|
+
|
|
259
|
+
```
|
|
260
|
+
docker pull mindsdb/mindsdb
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
## How it works <a name="How it works"></a>
|
|
264
|
+
|
|
265
|
+
1. **Connect:** Link MindsDB to your data platform. With support for hundreds of integrations and counting, we're constantly expanding our list.
|
|
266
|
+
2. **Create Model:** Select an AI Engine to learn from your data. Models are provisioned and deployed instantly for inference.
|
|
267
|
+
- Choose from pre-trained models like OpenAI's GPT, Hugging Face, LangChain, etc., for NLP and generative AI.
|
|
268
|
+
- Or select from a range of state-of-the-art engines for classic ML tasks (regression, classification, time-series).
|
|
269
|
+
- Even [import custom models](https://docs.mindsdb.com/custom-model/byom) built with any ML framework.
|
|
270
|
+
3. **Query Models:** Use [SELECT statements](https://docs.mindsdb.com/sql/api/select), [API calls](https://docs.mindsdb.com/rest/usage), or [JOIN commands](https://docs.mindsdb.com/sql/api/join) to make predictions on thousands or millions of data points simultaneously.
|
|
271
|
+
4. **Fine-Tune Models:** Experiment and [Fine-Tune](https://docs.mindsdb.com/sql/api/finetune) to achieve optimal results.
|
|
272
|
+
5. **Automate Workflows:** Streamline operations with [JOBS](https://docs.mindsdb.com/sql/create/jobs).
|
|
273
|
+
|
|
274
|
+
Follow the [quickstart guide](https://docs.mindsdb.com/quickstart?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) with sample data to get on-boarded as fast as possible.
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
## Data Integrations <a name="DatabaseIntegrations"></a>
|
|
278
|
+
|
|
279
|
+
MindsDB works with most SQL, NoSQL databases, data warehouses, and popular applications. You can find the list of all supported integrations [here](https://docs.mindsdb.com/data-integrations/all-data-integrations).
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
[:question: :wave: Missing integration?](https://github.com/mindsdb/mindsdb/issues/new?assignees=&labels=&template=feature-mindsdb-request.yaml)
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
## Documentation <a name="Documentation"></a>
|
|
286
|
+
|
|
287
|
+
You can find the complete documentation of MindsDB at [docs.mindsdb.com](https://docs.mindsdb.com?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
288
|
+
|
|
289
|
+
## Support <a name="Support"></a>
|
|
290
|
+
|
|
291
|
+
If you found a bug, please submit an [issue on GitHub](https://github.com/mindsdb/mindsdb/issues/new/choose).
|
|
292
|
+
|
|
293
|
+
To get community support, you can:
|
|
294
|
+
|
|
295
|
+
* Post a question at MindsDB [Slack community](https://mindsdb.com/joincommunity).
|
|
296
|
+
* Ask for help at our [GitHub Discussions](https://github.com/mindsdb/mindsdb/discussions).
|
|
297
|
+
* Ask a question at [Stackoverflow](https://stackoverflow.com/questions/tagged/mindsdb) with a MindsDB tag.
|
|
298
|
+
|
|
299
|
+
If you need commercial support, please [contact](https://mindsdb.com/contact/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) MindsDB team.
|
|
300
|
+
|
|
301
|
+
## Contributing <a name="Contributing"></a>
|
|
302
|
+
|
|
303
|
+
A great place to start contributing to MindsDB is to check our GitHub projects :checkered_flag:
|
|
304
|
+
|
|
305
|
+
* Community contributor's [dashboard tasks](https://github.com/mindsdb/mindsdb/projects/8).
|
|
306
|
+
* [First timers only issues](https://github.com/mindsdb/mindsdb/issues?q=is%3Aissue+is%3Aopen+label%3Afirst-timers-only), if this is your first time contributing to an open source project.
|
|
307
|
+
|
|
308
|
+
We are always open to suggestions, so feel free to open new issues with your ideas, and we can guide you!
|
|
309
|
+
|
|
310
|
+
Being part of the core team is accessible to anyone who is motivated and wants to be part of that journey!
|
|
311
|
+
If you'd like to contribute to the project, refer to the [contributing documentation](https://docs.mindsdb.com/contribute/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
312
|
+
|
|
313
|
+
This project is released with a [Contributor Code of Conduct](https://github.com/mindsdb/mindsdb/blob/stable/CODE_OF_CONDUCT.md). By participating in this project, you agree to follow its terms.
|
|
314
|
+
|
|
315
|
+
Also, check out the [rewards and community programs](https://mindsdb.com/community?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo).
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
### Current contributors <a name="Current contributors"></a>
|
|
319
|
+
|
|
320
|
+
<a href="https://github.com/mindsdb/mindsdb/graphs/contributors">
|
|
321
|
+
<img src="https://contributors-img.web.app/image?repo=mindsdb/mindsdb" />
|
|
322
|
+
</a>
|
|
323
|
+
|
|
324
|
+
Made with [contributors-img](https://contributors-img.web.app).
|
|
325
|
+
|
|
326
|
+
## Subscribe to updates
|
|
327
|
+
|
|
328
|
+
Join our [Slack community](https://mindsdb.com/joincommunity) and subscribe to the monthly [Developer Newsletter](https://mindsdb.com/newsletter/?utm_medium=community&utm_source=github&utm_campaign=mindsdb%20repo) to get product updates, information about MindsDB events and contests, and useful content, like tutorials.
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
## License <a name="License"></a>
|
|
332
|
+
|
|
333
|
+
For detailed licensing information, please refer to the [LICENSE file](https://github.com/mindsdb/mindsdb/blob/master/LICENSE)
|