evadb.connect#

evadb.connect(evadb_dir: str = 'evadb_data', sql_backend: str | None = None) EvaDBConnection[source]#

Connects to the EvaDB server and returns a connection object.

Parameters:
Returns:

A connection object representing the connection to the EvaDB database.

Return type:

EvaDBConnection

Examples

>>> from evadb import connect
>>> conn = connect()