Python
Connect
You can connect to your local MindsDB server, MindsDB Cloud server, or MindsDB Pro server.
Local MindsDB
MindsDB Cloud
MindsDB Pro
Here is how to connect to your local MindsDB server:
import mindsdb_sdk
# connects to the default port (47334) on localhost
server = mindsdb_sdk.connect()
# connects to the specified host and port
server = mindsdb_sdk.connect('http://127.0.0.1:47334')