├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── code-check.yml │ ├── coverage.yml │ ├── fusion-docs.yml │ ├── pre-commit.yml │ ├── publish.yml │ └── smoke-test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── accel.c ├── conda.recipe ├── bld.bat ├── build.sh └── meta.yaml ├── docs ├── .buildinfo ├── .nojekyll ├── CNAME ├── _images │ └── singlestore-logo.png ├── _sources │ ├── api.rst.txt │ ├── generated │ │ ├── singlestoredb.auth.get_jwt.rst.txt │ │ ├── singlestoredb.connect.rst.txt │ │ ├── singlestoredb.connection.Connection.autocommit.rst.txt │ │ ├── singlestoredb.connection.Connection.close.rst.txt │ │ ├── singlestoredb.connection.Connection.commit.rst.txt │ │ ├── singlestoredb.connection.Connection.cursor.rst.txt │ │ ├── singlestoredb.connection.Connection.disable_data_api.rst.txt │ │ ├── singlestoredb.connection.Connection.enable_data_api.rst.txt │ │ ├── singlestoredb.connection.Connection.is_connected.rst.txt │ │ ├── singlestoredb.connection.Connection.rollback.rst.txt │ │ ├── singlestoredb.connection.Connection.rst.txt │ │ ├── singlestoredb.connection.Connection.vector_db.rst.txt │ │ ├── singlestoredb.connection.Cursor.callproc.rst.txt │ │ ├── singlestoredb.connection.Cursor.close.rst.txt │ │ ├── singlestoredb.connection.Cursor.execute.rst.txt │ │ ├── singlestoredb.connection.Cursor.executemany.rst.txt │ │ ├── singlestoredb.connection.Cursor.fetchall.rst.txt │ │ ├── singlestoredb.connection.Cursor.fetchmany.rst.txt │ │ ├── singlestoredb.connection.Cursor.fetchone.rst.txt │ │ ├── singlestoredb.connection.Cursor.is_connected.rst.txt │ │ ├── singlestoredb.connection.Cursor.next.rst.txt │ │ ├── singlestoredb.connection.Cursor.nextset.rst.txt │ │ ├── singlestoredb.connection.Cursor.rst.txt │ │ ├── singlestoredb.connection.Cursor.scroll.rst.txt │ │ ├── singlestoredb.connection.Cursor.setinputsizes.rst.txt │ │ ├── singlestoredb.connection.Cursor.setoutputsize.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.aggregates.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.columns.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.create_aggregate.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.create_function.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.create_pipeline.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.create_table.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.create_view.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.database_status.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.databases.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.errors.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.functions.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.global_status.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.indexes.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.partitions.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.pipelines.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.plan.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.plancache.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.procedures.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.processlist.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.reproduction.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.schemas.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.session_status.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.status.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.table_status.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.tables.rst.txt │ │ ├── singlestoredb.connection.ShowAccessor.warnings.rst.txt │ │ ├── singlestoredb.connection.ShowResult.rst.txt │ │ ├── singlestoredb.create_engine.rst.txt │ │ ├── singlestoredb.describe_option.rst.txt │ │ ├── singlestoredb.get_option.rst.txt │ │ ├── singlestoredb.manage_files.rst.txt │ │ ├── singlestoredb.manage_workspaces.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.download_file.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.download_folder.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.exists.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.info.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.is_dir.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.is_file.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.listdir.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.mkdir.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.open.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.remove.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.removedirs.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.rename.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.rmdir.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.upload_file.rst.txt │ │ ├── singlestoredb.management.files.FileSpace.upload_folder.rst.txt │ │ ├── singlestoredb.management.files.FilesManager.models_space.rst.txt │ │ ├── singlestoredb.management.files.FilesManager.personal_space.rst.txt │ │ ├── singlestoredb.management.files.FilesManager.rst.txt │ │ ├── singlestoredb.management.files.FilesManager.shared_space.rst.txt │ │ ├── singlestoredb.management.job.Execution.rst.txt │ │ ├── singlestoredb.management.job.ExecutionConfig.rst.txt │ │ ├── singlestoredb.management.job.ExecutionMetadata.rst.txt │ │ ├── singlestoredb.management.job.ExecutionsData.rst.txt │ │ ├── singlestoredb.management.job.Job.delete.rst.txt │ │ ├── singlestoredb.management.job.Job.get_executions.rst.txt │ │ ├── singlestoredb.management.job.Job.get_parameters.rst.txt │ │ ├── singlestoredb.management.job.Job.rst.txt │ │ ├── singlestoredb.management.job.Job.wait.rst.txt │ │ ├── singlestoredb.management.job.JobMetadata.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.delete.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.get.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.get_executions.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.get_parameters.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.modes.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.run.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.runtimes.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.schedule.rst.txt │ │ ├── singlestoredb.management.job.JobsManager.wait.rst.txt │ │ ├── singlestoredb.management.job.Mode.rst.txt │ │ ├── singlestoredb.management.job.Parameter.rst.txt │ │ ├── singlestoredb.management.job.Runtime.rst.txt │ │ ├── singlestoredb.management.job.Schedule.rst.txt │ │ ├── singlestoredb.management.job.Status.rst.txt │ │ ├── singlestoredb.management.job.TargetConfig.rst.txt │ │ ├── singlestoredb.management.job.TargetType.rst.txt │ │ ├── singlestoredb.management.organization.Organization.get_secret.rst.txt │ │ ├── singlestoredb.management.organization.Organization.inference_apis.rst.txt │ │ ├── singlestoredb.management.organization.Organization.jobs.rst.txt │ │ ├── singlestoredb.management.organization.Organization.rst.txt │ │ ├── singlestoredb.management.organization.Secret.rst.txt │ │ ├── singlestoredb.management.region.Region.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.abspath.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.basename.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.dirname.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.download.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.exists.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.getctime.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.getmtime.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.is_dir.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.is_file.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.open.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.remove.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.removedirs.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.rename.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.rmdir.rst.txt │ │ ├── singlestoredb.management.workspace.FilesObject.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.download_file.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.download_folder.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.exists.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.info.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.is_dir.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.is_file.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.listdir.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.mkdir.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.open.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.remove.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.removedirs.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.rename.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.rmdir.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.upload_file.rst.txt │ │ ├── singlestoredb.management.workspace.Stage.upload_folder.rst.txt │ │ ├── singlestoredb.management.workspace.Workspace.connect.rst.txt │ │ ├── singlestoredb.management.workspace.Workspace.refresh.rst.txt │ │ ├── singlestoredb.management.workspace.Workspace.rst.txt │ │ ├── singlestoredb.management.workspace.Workspace.terminate.rst.txt │ │ ├── singlestoredb.management.workspace.Workspace.update.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.create_workspace.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.refresh.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.stage.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.terminate.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.update.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceGroup.workspaces.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.create_starter_workspace.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.create_workspace.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.create_workspace_group.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.get_starter_workspace.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.get_workspace.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.get_workspace_group.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.organization.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.regions.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.shared_tier_regions.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.starter_workspaces.rst.txt │ │ ├── singlestoredb.management.workspace.WorkspaceManager.workspace_groups.rst.txt │ │ ├── singlestoredb.notebook.organization.rst.txt │ │ ├── singlestoredb.notebook.secrets.rst.txt │ │ ├── singlestoredb.notebook.stage.rst.txt │ │ ├── singlestoredb.notebook.workspace.rst.txt │ │ ├── singlestoredb.notebook.workspace_group.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.connect.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.connect_kai.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.connection_url.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.http_connection_url.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.kai_url.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.logs.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.open_mongosh.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.open_shell.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.open_studio.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.stop.rst.txt │ │ ├── singlestoredb.server.docker.SingleStoreDB.studio_url.rst.txt │ │ ├── singlestoredb.server.docker.start.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.connect.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.connection_url.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.http_connection_url.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.kai_url.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.open_mongosh.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.open_shell.rst.txt │ │ ├── singlestoredb.server.free_tier.SingleStoreDB.stop.rst.txt │ │ ├── singlestoredb.server.free_tier.start.rst.txt │ │ ├── singlestoredb.set_option.rst.txt │ │ └── singlestoredb.vector_db.rst.txt │ ├── getting-started.rst.txt │ ├── index.rst.txt │ ├── install.rst.txt │ ├── license.rst.txt │ └── whatsnew.rst.txt ├── _static │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── custom.css │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── fonts │ │ ├── Lato │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-bolditalic.woff2 │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-italic.woff2 │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.ttf │ │ │ ├── lato-regular.woff │ │ │ └── lato-regular.woff2 │ │ └── RobotoSlab │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ └── roboto-slab-v7-regular.woff2 │ ├── js │ │ ├── badge_only.js │ │ ├── theme.js │ │ └── versions.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ └── sphinx_highlight.js ├── api.html ├── generated │ ├── singlestoredb.auth.get_jwt.html │ ├── singlestoredb.connect.html │ ├── singlestoredb.connection.Connection.autocommit.html │ ├── singlestoredb.connection.Connection.close.html │ ├── singlestoredb.connection.Connection.commit.html │ ├── singlestoredb.connection.Connection.cursor.html │ ├── singlestoredb.connection.Connection.disable_data_api.html │ ├── singlestoredb.connection.Connection.enable_data_api.html │ ├── singlestoredb.connection.Connection.html │ ├── singlestoredb.connection.Connection.is_connected.html │ ├── singlestoredb.connection.Connection.rollback.html │ ├── singlestoredb.connection.Connection.vector_db.html │ ├── singlestoredb.connection.Cursor.callproc.html │ ├── singlestoredb.connection.Cursor.close.html │ ├── singlestoredb.connection.Cursor.execute.html │ ├── singlestoredb.connection.Cursor.executemany.html │ ├── singlestoredb.connection.Cursor.fetchall.html │ ├── singlestoredb.connection.Cursor.fetchmany.html │ ├── singlestoredb.connection.Cursor.fetchone.html │ ├── singlestoredb.connection.Cursor.html │ ├── singlestoredb.connection.Cursor.is_connected.html │ ├── singlestoredb.connection.Cursor.next.html │ ├── singlestoredb.connection.Cursor.nextset.html │ ├── singlestoredb.connection.Cursor.scroll.html │ ├── singlestoredb.connection.Cursor.setinputsizes.html │ ├── singlestoredb.connection.Cursor.setoutputsize.html │ ├── singlestoredb.connection.ShowAccessor.aggregates.html │ ├── singlestoredb.connection.ShowAccessor.columns.html │ ├── singlestoredb.connection.ShowAccessor.create_aggregate.html │ ├── singlestoredb.connection.ShowAccessor.create_function.html │ ├── singlestoredb.connection.ShowAccessor.create_pipeline.html │ ├── singlestoredb.connection.ShowAccessor.create_table.html │ ├── singlestoredb.connection.ShowAccessor.create_view.html │ ├── singlestoredb.connection.ShowAccessor.database_status.html │ ├── singlestoredb.connection.ShowAccessor.databases.html │ ├── singlestoredb.connection.ShowAccessor.errors.html │ ├── singlestoredb.connection.ShowAccessor.functions.html │ ├── singlestoredb.connection.ShowAccessor.global_status.html │ ├── singlestoredb.connection.ShowAccessor.indexes.html │ ├── singlestoredb.connection.ShowAccessor.partitions.html │ ├── singlestoredb.connection.ShowAccessor.pipelines.html │ ├── singlestoredb.connection.ShowAccessor.plan.html │ ├── singlestoredb.connection.ShowAccessor.plancache.html │ ├── singlestoredb.connection.ShowAccessor.procedures.html │ ├── singlestoredb.connection.ShowAccessor.processlist.html │ ├── singlestoredb.connection.ShowAccessor.reproduction.html │ ├── singlestoredb.connection.ShowAccessor.schemas.html │ ├── singlestoredb.connection.ShowAccessor.session_status.html │ ├── singlestoredb.connection.ShowAccessor.status.html │ ├── singlestoredb.connection.ShowAccessor.table_status.html │ ├── singlestoredb.connection.ShowAccessor.tables.html │ ├── singlestoredb.connection.ShowAccessor.warnings.html │ ├── singlestoredb.connection.ShowResult.html │ ├── singlestoredb.create_engine.html │ ├── singlestoredb.describe_option.html │ ├── singlestoredb.get_option.html │ ├── singlestoredb.manage_files.html │ ├── singlestoredb.manage_workspaces.html │ ├── singlestoredb.management.files.FileSpace.download_file.html │ ├── singlestoredb.management.files.FileSpace.download_folder.html │ ├── singlestoredb.management.files.FileSpace.exists.html │ ├── singlestoredb.management.files.FileSpace.html │ ├── singlestoredb.management.files.FileSpace.info.html │ ├── singlestoredb.management.files.FileSpace.is_dir.html │ ├── singlestoredb.management.files.FileSpace.is_file.html │ ├── singlestoredb.management.files.FileSpace.listdir.html │ ├── singlestoredb.management.files.FileSpace.mkdir.html │ ├── singlestoredb.management.files.FileSpace.open.html │ ├── singlestoredb.management.files.FileSpace.remove.html │ ├── singlestoredb.management.files.FileSpace.removedirs.html │ ├── singlestoredb.management.files.FileSpace.rename.html │ ├── singlestoredb.management.files.FileSpace.rmdir.html │ ├── singlestoredb.management.files.FileSpace.upload_file.html │ ├── singlestoredb.management.files.FileSpace.upload_folder.html │ ├── singlestoredb.management.files.FilesManager.html │ ├── singlestoredb.management.files.FilesManager.models_space.html │ ├── singlestoredb.management.files.FilesManager.personal_space.html │ ├── singlestoredb.management.files.FilesManager.shared_space.html │ ├── singlestoredb.management.job.Execution.html │ ├── singlestoredb.management.job.ExecutionConfig.html │ ├── singlestoredb.management.job.ExecutionMetadata.html │ ├── singlestoredb.management.job.ExecutionsData.html │ ├── singlestoredb.management.job.Job.delete.html │ ├── singlestoredb.management.job.Job.get_executions.html │ ├── singlestoredb.management.job.Job.get_parameters.html │ ├── singlestoredb.management.job.Job.html │ ├── singlestoredb.management.job.Job.wait.html │ ├── singlestoredb.management.job.JobMetadata.html │ ├── singlestoredb.management.job.JobsManager.delete.html │ ├── singlestoredb.management.job.JobsManager.get.html │ ├── singlestoredb.management.job.JobsManager.get_executions.html │ ├── singlestoredb.management.job.JobsManager.get_parameters.html │ ├── singlestoredb.management.job.JobsManager.html │ ├── singlestoredb.management.job.JobsManager.modes.html │ ├── singlestoredb.management.job.JobsManager.run.html │ ├── singlestoredb.management.job.JobsManager.runtimes.html │ ├── singlestoredb.management.job.JobsManager.schedule.html │ ├── singlestoredb.management.job.JobsManager.wait.html │ ├── singlestoredb.management.job.Mode.html │ ├── singlestoredb.management.job.Parameter.html │ ├── singlestoredb.management.job.Runtime.html │ ├── singlestoredb.management.job.Schedule.html │ ├── singlestoredb.management.job.Status.html │ ├── singlestoredb.management.job.TargetConfig.html │ ├── singlestoredb.management.job.TargetType.html │ ├── singlestoredb.management.organization.Organization.get_secret.html │ ├── singlestoredb.management.organization.Organization.html │ ├── singlestoredb.management.organization.Organization.inference_apis.html │ ├── singlestoredb.management.organization.Organization.jobs.html │ ├── singlestoredb.management.organization.Secret.html │ ├── singlestoredb.management.region.Region.html │ ├── singlestoredb.management.workspace.FilesObject.abspath.html │ ├── singlestoredb.management.workspace.FilesObject.basename.html │ ├── singlestoredb.management.workspace.FilesObject.dirname.html │ ├── singlestoredb.management.workspace.FilesObject.download.html │ ├── singlestoredb.management.workspace.FilesObject.exists.html │ ├── singlestoredb.management.workspace.FilesObject.getctime.html │ ├── singlestoredb.management.workspace.FilesObject.getmtime.html │ ├── singlestoredb.management.workspace.FilesObject.html │ ├── singlestoredb.management.workspace.FilesObject.is_dir.html │ ├── singlestoredb.management.workspace.FilesObject.is_file.html │ ├── singlestoredb.management.workspace.FilesObject.open.html │ ├── singlestoredb.management.workspace.FilesObject.remove.html │ ├── singlestoredb.management.workspace.FilesObject.removedirs.html │ ├── singlestoredb.management.workspace.FilesObject.rename.html │ ├── singlestoredb.management.workspace.FilesObject.rmdir.html │ ├── singlestoredb.management.workspace.Stage.download_file.html │ ├── singlestoredb.management.workspace.Stage.download_folder.html │ ├── singlestoredb.management.workspace.Stage.exists.html │ ├── singlestoredb.management.workspace.Stage.html │ ├── singlestoredb.management.workspace.Stage.info.html │ ├── singlestoredb.management.workspace.Stage.is_dir.html │ ├── singlestoredb.management.workspace.Stage.is_file.html │ ├── singlestoredb.management.workspace.Stage.listdir.html │ ├── singlestoredb.management.workspace.Stage.mkdir.html │ ├── singlestoredb.management.workspace.Stage.open.html │ ├── singlestoredb.management.workspace.Stage.remove.html │ ├── singlestoredb.management.workspace.Stage.removedirs.html │ ├── singlestoredb.management.workspace.Stage.rename.html │ ├── singlestoredb.management.workspace.Stage.rmdir.html │ ├── singlestoredb.management.workspace.Stage.upload_file.html │ ├── singlestoredb.management.workspace.Stage.upload_folder.html │ ├── singlestoredb.management.workspace.Workspace.connect.html │ ├── singlestoredb.management.workspace.Workspace.html │ ├── singlestoredb.management.workspace.Workspace.refresh.html │ ├── singlestoredb.management.workspace.Workspace.terminate.html │ ├── singlestoredb.management.workspace.Workspace.update.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.create_workspace.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.refresh.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.stage.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.terminate.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.update.html │ ├── singlestoredb.management.workspace.WorkspaceGroup.workspaces.html │ ├── singlestoredb.management.workspace.WorkspaceManager.create_starter_workspace.html │ ├── singlestoredb.management.workspace.WorkspaceManager.create_workspace.html │ ├── singlestoredb.management.workspace.WorkspaceManager.create_workspace_group.html │ ├── singlestoredb.management.workspace.WorkspaceManager.get_starter_workspace.html │ ├── singlestoredb.management.workspace.WorkspaceManager.get_workspace.html │ ├── singlestoredb.management.workspace.WorkspaceManager.get_workspace_group.html │ ├── singlestoredb.management.workspace.WorkspaceManager.html │ ├── singlestoredb.management.workspace.WorkspaceManager.organization.html │ ├── singlestoredb.management.workspace.WorkspaceManager.regions.html │ ├── singlestoredb.management.workspace.WorkspaceManager.shared_tier_regions.html │ ├── singlestoredb.management.workspace.WorkspaceManager.starter_workspaces.html │ ├── singlestoredb.management.workspace.WorkspaceManager.workspace_groups.html │ ├── singlestoredb.notebook.organization.html │ ├── singlestoredb.notebook.secrets.html │ ├── singlestoredb.notebook.stage.html │ ├── singlestoredb.notebook.workspace.html │ ├── singlestoredb.notebook.workspace_group.html │ ├── singlestoredb.server.docker.SingleStoreDB.connect.html │ ├── singlestoredb.server.docker.SingleStoreDB.connect_kai.html │ ├── singlestoredb.server.docker.SingleStoreDB.connection_url.html │ ├── singlestoredb.server.docker.SingleStoreDB.http_connection_url.html │ ├── singlestoredb.server.docker.SingleStoreDB.kai_url.html │ ├── singlestoredb.server.docker.SingleStoreDB.logs.html │ ├── singlestoredb.server.docker.SingleStoreDB.open_mongosh.html │ ├── singlestoredb.server.docker.SingleStoreDB.open_shell.html │ ├── singlestoredb.server.docker.SingleStoreDB.open_studio.html │ ├── singlestoredb.server.docker.SingleStoreDB.stop.html │ ├── singlestoredb.server.docker.SingleStoreDB.studio_url.html │ ├── singlestoredb.server.docker.start.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.connect.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.connection_url.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.http_connection_url.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.kai_url.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.open_mongosh.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.open_shell.html │ ├── singlestoredb.server.free_tier.SingleStoreDB.stop.html │ ├── singlestoredb.server.free_tier.start.html │ ├── singlestoredb.set_option.html │ └── singlestoredb.vector_db.html ├── genindex.html ├── getting-started.html ├── index.html ├── install.html ├── license.html ├── objects.inv ├── py-modindex.html ├── search.html ├── searchindex.js ├── src │ ├── Makefile │ ├── _static │ │ └── custom.css │ ├── api.rst │ ├── conf.py │ ├── custom.css │ ├── getting-started.rst │ ├── index.rst │ ├── install.rst │ ├── license.rst │ ├── make.bat │ ├── post-process-html │ ├── singlestoredb-docker.py │ └── whatsnew.rst └── whatsnew.html ├── examples ├── getting-started.ipynb └── test.sql ├── licenses ├── README.md ├── pymysql.txt ├── requests.txt └── sqlparams.txt ├── pyproject.toml ├── resources ├── build_docs.py ├── bump_version.py ├── create_release.py ├── create_test_cluster.py ├── drop_db.py ├── drop_test_cluster.py ├── gen_fusion_handlers_doc.py ├── init_db.py └── singlestore-logo.png ├── setup.py ├── singlestoredb ├── __init__.py ├── ai │ ├── __init__.py │ ├── chat.py │ └── embeddings.py ├── alchemy │ └── __init__.py ├── apps │ ├── __init__.py │ ├── _cloud_functions.py │ ├── _config.py │ ├── _connection_info.py │ ├── _dashboards.py │ ├── _process.py │ ├── _python_udfs.py │ ├── _stdout_supress.py │ └── _uvicorn_util.py ├── auth.py ├── config.py ├── connection.py ├── converters.py ├── docstring │ ├── LICENSE.md │ ├── README.md │ ├── __init__.py │ ├── attrdoc.py │ ├── common.py │ ├── epydoc.py │ ├── google.py │ ├── numpydoc.py │ ├── parser.py │ ├── py.typed │ ├── rest.py │ ├── tests │ │ ├── __init__.py │ │ ├── _pydoctor.py │ │ ├── test_epydoc.py │ │ ├── test_google.py │ │ ├── test_numpydoc.py │ │ ├── test_parse_from_object.py │ │ ├── test_parser.py │ │ ├── test_rest.py │ │ └── test_util.py │ └── util.py ├── exceptions.py ├── functions │ ├── __init__.py │ ├── decorator.py │ ├── dtypes.py │ ├── ext │ │ ├── __init__.py │ │ ├── arrow.py │ │ ├── asgi.py │ │ ├── json.py │ │ ├── mmap.py │ │ ├── rowdat_1.py │ │ ├── timer.py │ │ └── utils.py │ ├── signature.py │ ├── typing │ │ ├── __init__.py │ │ ├── numpy.py │ │ ├── pandas.py │ │ ├── polars.py │ │ └── pyarrow.py │ └── utils.py ├── fusion │ ├── README.md │ ├── __init__.py │ ├── graphql.py │ ├── handler.py │ ├── handlers │ │ ├── __init__.py │ │ ├── export.py │ │ ├── files.py │ │ ├── job.py │ │ ├── models.py │ │ ├── stage.py │ │ ├── utils.py │ │ └── workspace.py │ ├── registry.py │ └── result.py ├── http │ ├── __init__.py │ └── connection.py ├── magics │ ├── __init__.py │ ├── run_personal.py │ └── run_shared.py ├── management │ ├── __init__.py │ ├── billing_usage.py │ ├── cluster.py │ ├── export.py │ ├── files.py │ ├── inference_api.py │ ├── job.py │ ├── manager.py │ ├── organization.py │ ├── region.py │ ├── utils.py │ └── workspace.py ├── mysql │ ├── __init__.py │ ├── _auth.py │ ├── charset.py │ ├── connection.py │ ├── constants │ │ ├── CLIENT.py │ │ ├── COMMAND.py │ │ ├── CR.py │ │ ├── ER.py │ │ ├── EXTENDED_TYPE.py │ │ ├── FIELD_TYPE.py │ │ ├── FLAG.py │ │ ├── SERVER_STATUS.py │ │ ├── VECTOR_TYPE.py │ │ └── __init__.py │ ├── converters.py │ ├── cursors.py │ ├── err.py │ ├── optionfile.py │ ├── protocol.py │ ├── tests │ │ ├── __init__.py │ │ ├── base.py │ │ ├── conftest.py │ │ ├── data │ │ │ ├── load_local_data.txt │ │ │ └── load_local_warn_data.txt │ │ ├── test_DictCursor.py │ │ ├── test_SSCursor.py │ │ ├── test_basic.py │ │ ├── test_connection.py │ │ ├── test_converters.py │ │ ├── test_cursor.py │ │ ├── test_err.py │ │ ├── test_issues.py │ │ ├── test_load_local.py │ │ ├── test_nextset.py │ │ ├── test_optionfile.py │ │ └── thirdparty │ │ │ ├── __init__.py │ │ │ └── test_MySQLdb │ │ │ ├── __init__.py │ │ │ ├── capabilities.py │ │ │ ├── dbapi20.py │ │ │ ├── test_MySQLdb_capabilities.py │ │ │ ├── test_MySQLdb_dbapi20.py │ │ │ └── test_MySQLdb_nonstandard.py │ └── times.py ├── notebook │ ├── __init__.py │ ├── _objects.py │ └── _portal.py ├── py.typed ├── pytest.py ├── server │ ├── __init__.py │ ├── docker.py │ └── free_tier.py ├── tests │ ├── __init__.py │ ├── alltypes.sql │ ├── alltypes_no_nulls.sql │ ├── conftest.py │ ├── empty.sql │ ├── ext_funcs │ │ └── __init__.py │ ├── local_infile.csv │ ├── test.ipynb │ ├── test.sql │ ├── test2.ipynb │ ├── test2.sql │ ├── test_basics.py │ ├── test_config.py │ ├── test_connection.py │ ├── test_dbapi.py │ ├── test_exceptions.py │ ├── test_ext_func.py │ ├── test_ext_func_data.py │ ├── test_fusion.py │ ├── test_http.py │ ├── test_management.py │ ├── test_plugin.py │ ├── test_results.py │ ├── test_types.py │ ├── test_udf.py │ ├── test_udf_returns.py │ ├── test_vectorstore.py │ ├── test_xdict.py │ └── utils.py ├── types.py ├── utils │ ├── __init__.py │ ├── config.py │ ├── convert_rows.py │ ├── debug.py │ ├── dtypes.py │ ├── events.py │ ├── mogrify.py │ ├── results.py │ └── xdict.py ├── vectorstore.py └── warnings.py └── sqlx ├── __init__.py └── magic.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/code-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.github/workflows/code-check.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/fusion-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.github/workflows/fusion-docs.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/smoke-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.github/workflows/smoke-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @kesmit13 2 | * @srinathnarayanan 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/RELEASE.md -------------------------------------------------------------------------------- /accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/accel.c -------------------------------------------------------------------------------- /conda.recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/conda.recipe/bld.bat -------------------------------------------------------------------------------- /conda.recipe/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/conda.recipe/build.sh -------------------------------------------------------------------------------- /conda.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/conda.recipe/meta.yaml -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/CNAME -------------------------------------------------------------------------------- /docs/_images/singlestore-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_images/singlestore-logo.png -------------------------------------------------------------------------------- /docs/_sources/api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/api.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.auth.get_jwt.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.auth.get_jwt.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connect.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connect.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.autocommit.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.autocommit.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.close.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.close.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.commit.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.commit.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.cursor.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.cursor.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.disable_data_api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.disable_data_api.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.enable_data_api.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.enable_data_api.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.is_connected.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.is_connected.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.rollback.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.rollback.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Connection.vector_db.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Connection.vector_db.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.callproc.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.callproc.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.close.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.close.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.execute.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.execute.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.executemany.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.executemany.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.fetchall.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.fetchall.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.fetchmany.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.fetchmany.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.fetchone.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.fetchone.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.is_connected.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.is_connected.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.next.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.next.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.nextset.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.nextset.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.scroll.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.scroll.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.setinputsizes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.setinputsizes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.Cursor.setoutputsize.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.Cursor.setoutputsize.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.aggregates.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.aggregates.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.columns.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.columns.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_aggregate.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_aggregate.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_function.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_function.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_pipeline.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_pipeline.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_table.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_table.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_view.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.create_view.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.database_status.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.database_status.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.databases.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.databases.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.errors.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.errors.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.functions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.functions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.global_status.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.global_status.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.indexes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.indexes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.partitions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.partitions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.pipelines.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.pipelines.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.plan.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.plan.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.plancache.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.plancache.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.procedures.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.procedures.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.processlist.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.processlist.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.reproduction.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.reproduction.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.schemas.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.schemas.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.session_status.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.session_status.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.status.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.status.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.table_status.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.table_status.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.tables.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.tables.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowAccessor.warnings.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowAccessor.warnings.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.connection.ShowResult.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.connection.ShowResult.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.create_engine.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.create_engine.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.describe_option.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.describe_option.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.get_option.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.get_option.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.manage_files.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.manage_files.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.manage_workspaces.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.manage_workspaces.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.download_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.download_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.download_folder.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.download_folder.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.exists.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.exists.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.info.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.info.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.is_dir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.is_dir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.is_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.is_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.listdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.listdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.mkdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.mkdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.open.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.open.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.remove.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.remove.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.removedirs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.removedirs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.rename.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.rename.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.rmdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.rmdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.upload_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.upload_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FileSpace.upload_folder.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FileSpace.upload_folder.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FilesManager.models_space.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FilesManager.models_space.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FilesManager.personal_space.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FilesManager.personal_space.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FilesManager.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FilesManager.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.files.FilesManager.shared_space.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.files.FilesManager.shared_space.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Execution.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Execution.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.ExecutionConfig.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.ExecutionConfig.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.ExecutionMetadata.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.ExecutionMetadata.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.ExecutionsData.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.ExecutionsData.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Job.delete.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Job.delete.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Job.get_executions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Job.get_executions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Job.get_parameters.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Job.get_parameters.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Job.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Job.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Job.wait.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Job.wait.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobMetadata.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobMetadata.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.delete.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.delete.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.get.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.get.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.get_executions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.get_executions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.get_parameters.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.get_parameters.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.modes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.modes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.run.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.run.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.runtimes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.runtimes.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.schedule.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.schedule.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.JobsManager.wait.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.JobsManager.wait.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Mode.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Mode.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Parameter.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Parameter.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Runtime.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Runtime.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Schedule.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Schedule.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.Status.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.Status.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.TargetConfig.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.TargetConfig.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.job.TargetType.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.job.TargetType.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.organization.Organization.get_secret.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.organization.Organization.get_secret.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.organization.Organization.inference_apis.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.organization.Organization.inference_apis.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.organization.Organization.jobs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.organization.Organization.jobs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.organization.Organization.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.organization.Organization.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.organization.Secret.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.organization.Secret.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.region.Region.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.region.Region.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.abspath.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.abspath.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.basename.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.basename.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.dirname.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.dirname.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.download.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.download.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.exists.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.exists.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.getctime.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.getctime.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.getmtime.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.getmtime.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.is_dir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.is_dir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.is_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.is_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.open.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.open.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.remove.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.remove.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.removedirs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.removedirs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.rename.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.rename.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.rmdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.rmdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.FilesObject.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.FilesObject.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.download_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.download_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.download_folder.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.download_folder.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.exists.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.exists.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.info.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.info.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.is_dir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.is_dir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.is_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.is_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.listdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.listdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.mkdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.mkdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.open.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.open.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.remove.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.remove.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.removedirs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.removedirs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.rename.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.rename.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.rmdir.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.rmdir.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.upload_file.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.upload_file.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Stage.upload_folder.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Stage.upload_folder.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Workspace.connect.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Workspace.connect.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Workspace.refresh.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Workspace.refresh.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Workspace.terminate.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Workspace.terminate.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.Workspace.update.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.Workspace.update.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.create_workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.create_workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.refresh.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.refresh.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.stage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.stage.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.terminate.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.terminate.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.update.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.update.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.workspaces.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceGroup.workspaces.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.create_starter_workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.create_starter_workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace_group.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace_group.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.get_starter_workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.get_starter_workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace_group.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace_group.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.organization.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.organization.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.regions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.regions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.shared_tier_regions.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.shared_tier_regions.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.starter_workspaces.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.starter_workspaces.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.workspace_groups.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.management.workspace.WorkspaceManager.workspace_groups.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.notebook.organization.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.notebook.organization.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.notebook.secrets.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.notebook.secrets.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.notebook.stage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.notebook.stage.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.notebook.workspace.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.notebook.workspace.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.notebook.workspace_group.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.notebook.workspace_group.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.connect.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.connect.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.connect_kai.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.connect_kai.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.connection_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.connection_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.http_connection_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.http_connection_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.kai_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.kai_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.logs.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.logs.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.open_mongosh.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.open_mongosh.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.open_shell.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.open_shell.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.open_studio.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.open_studio.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.stop.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.stop.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.studio_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.SingleStoreDB.studio_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.docker.start.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.docker.start.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.connect.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.connect.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.connection_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.connection_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.http_connection_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.http_connection_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.kai_url.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.kai_url.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.open_mongosh.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.open_mongosh.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.open_shell.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.open_shell.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.stop.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.SingleStoreDB.stop.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.server.free_tier.start.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.server.free_tier.start.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.set_option.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.set_option.rst.txt -------------------------------------------------------------------------------- /docs/_sources/generated/singlestoredb.vector_db.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/generated/singlestoredb.vector_db.rst.txt -------------------------------------------------------------------------------- /docs/_sources/getting-started.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/getting-started.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/install.rst.txt -------------------------------------------------------------------------------- /docs/_sources/license.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/license.rst.txt -------------------------------------------------------------------------------- /docs/_sources/whatsnew.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_sources/whatsnew.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/js/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/js/versions.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/api.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.auth.get_jwt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.auth.get_jwt.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connect.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.autocommit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.autocommit.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.close.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.commit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.commit.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.cursor.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.disable_data_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.disable_data_api.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.enable_data_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.enable_data_api.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.is_connected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.is_connected.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.rollback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.rollback.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Connection.vector_db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Connection.vector_db.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.callproc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.callproc.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.close.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.execute.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.executemany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.executemany.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.fetchall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.fetchall.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.fetchmany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.fetchmany.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.fetchone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.fetchone.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.is_connected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.is_connected.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.next.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.nextset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.nextset.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.scroll.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.setinputsizes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.setinputsizes.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.Cursor.setoutputsize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.Cursor.setoutputsize.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.aggregates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.aggregates.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.columns.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.create_aggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.create_aggregate.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.create_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.create_function.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.create_pipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.create_pipeline.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.create_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.create_table.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.create_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.create_view.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.database_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.database_status.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.databases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.databases.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.errors.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.functions.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.global_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.global_status.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.indexes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.indexes.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.partitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.partitions.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.pipelines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.pipelines.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.plan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.plan.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.plancache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.plancache.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.procedures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.procedures.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.processlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.processlist.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.reproduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.reproduction.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.schemas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.schemas.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.session_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.session_status.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.status.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.table_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.table_status.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.tables.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowAccessor.warnings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowAccessor.warnings.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.connection.ShowResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.connection.ShowResult.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.create_engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.create_engine.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.describe_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.describe_option.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.get_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.get_option.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.manage_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.manage_files.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.manage_workspaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.manage_workspaces.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.download_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.download_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.download_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.download_folder.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.exists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.exists.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.info.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.is_dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.is_dir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.is_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.is_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.listdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.listdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.mkdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.open.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.remove.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.removedirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.removedirs.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.rename.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.rmdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.rmdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.upload_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.upload_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FileSpace.upload_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FileSpace.upload_folder.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FilesManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FilesManager.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FilesManager.models_space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FilesManager.models_space.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FilesManager.personal_space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FilesManager.personal_space.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.files.FilesManager.shared_space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.files.FilesManager.shared_space.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Execution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Execution.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.ExecutionConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.ExecutionConfig.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.ExecutionMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.ExecutionMetadata.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.ExecutionsData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.ExecutionsData.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Job.delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Job.delete.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Job.get_executions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Job.get_executions.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Job.get_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Job.get_parameters.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Job.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Job.wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Job.wait.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobMetadata.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.delete.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.get.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.get_executions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.get_executions.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.get_parameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.get_parameters.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.modes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.modes.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.run.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.runtimes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.runtimes.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.schedule.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.JobsManager.wait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.JobsManager.wait.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Mode.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Parameter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Parameter.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Runtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Runtime.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Schedule.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.Status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.Status.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.TargetConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.TargetConfig.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.job.TargetType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.job.TargetType.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.organization.Organization.get_secret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.organization.Organization.get_secret.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.organization.Organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.organization.Organization.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.organization.Organization.inference_apis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.organization.Organization.inference_apis.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.organization.Organization.jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.organization.Organization.jobs.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.organization.Secret.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.organization.Secret.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.region.Region.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.region.Region.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.abspath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.abspath.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.basename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.basename.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.dirname.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.dirname.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.download.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.exists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.exists.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.getctime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.getctime.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.getmtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.getmtime.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.is_dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.is_dir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.is_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.is_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.open.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.remove.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.removedirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.removedirs.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.rename.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.FilesObject.rmdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.FilesObject.rmdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.download_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.download_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.download_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.download_folder.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.exists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.exists.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.info.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.is_dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.is_dir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.is_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.is_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.listdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.listdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.mkdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.open.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.remove.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.remove.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.removedirs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.removedirs.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.rename.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.rmdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.rmdir.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.upload_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.upload_file.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Stage.upload_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Stage.upload_folder.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Workspace.connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Workspace.connect.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Workspace.refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Workspace.refresh.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Workspace.terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Workspace.terminate.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.Workspace.update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.Workspace.update.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.create_workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.create_workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.refresh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.refresh.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.stage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.stage.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.terminate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.terminate.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.update.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceGroup.workspaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceGroup.workspaces.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.create_starter_workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.create_starter_workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.create_workspace_group.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.get_starter_workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.get_starter_workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.get_workspace_group.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.organization.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.regions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.regions.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.shared_tier_regions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.shared_tier_regions.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.starter_workspaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.starter_workspaces.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.management.workspace.WorkspaceManager.workspace_groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.management.workspace.WorkspaceManager.workspace_groups.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.notebook.organization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.notebook.organization.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.notebook.secrets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.notebook.secrets.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.notebook.stage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.notebook.stage.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.notebook.workspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.notebook.workspace.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.notebook.workspace_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.notebook.workspace_group.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.connect.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.connect_kai.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.connect_kai.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.connection_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.connection_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.http_connection_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.http_connection_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.kai_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.kai_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.logs.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.open_mongosh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.open_mongosh.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.open_shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.open_shell.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.open_studio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.open_studio.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.stop.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.SingleStoreDB.studio_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.SingleStoreDB.studio_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.docker.start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.docker.start.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.connect.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.connection_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.connection_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.http_connection_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.http_connection_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.kai_url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.kai_url.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.open_mongosh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.open_mongosh.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.open_shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.open_shell.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.SingleStoreDB.stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.SingleStoreDB.stop.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.server.free_tier.start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.server.free_tier.start.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.set_option.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.set_option.html -------------------------------------------------------------------------------- /docs/generated/singlestoredb.vector_db.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/generated/singlestoredb.vector_db.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/install.html -------------------------------------------------------------------------------- /docs/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/license.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/Makefile -------------------------------------------------------------------------------- /docs/src/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/_static/custom.css -------------------------------------------------------------------------------- /docs/src/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/api.rst -------------------------------------------------------------------------------- /docs/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/conf.py -------------------------------------------------------------------------------- /docs/src/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/custom.css -------------------------------------------------------------------------------- /docs/src/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/getting-started.rst -------------------------------------------------------------------------------- /docs/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/index.rst -------------------------------------------------------------------------------- /docs/src/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/install.rst -------------------------------------------------------------------------------- /docs/src/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/license.rst -------------------------------------------------------------------------------- /docs/src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/make.bat -------------------------------------------------------------------------------- /docs/src/post-process-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/post-process-html -------------------------------------------------------------------------------- /docs/src/singlestoredb-docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/singlestoredb-docker.py -------------------------------------------------------------------------------- /docs/src/whatsnew.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/src/whatsnew.rst -------------------------------------------------------------------------------- /docs/whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/docs/whatsnew.html -------------------------------------------------------------------------------- /examples/getting-started.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/examples/getting-started.ipynb -------------------------------------------------------------------------------- /examples/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/examples/test.sql -------------------------------------------------------------------------------- /licenses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/licenses/README.md -------------------------------------------------------------------------------- /licenses/pymysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/licenses/pymysql.txt -------------------------------------------------------------------------------- /licenses/requests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/licenses/requests.txt -------------------------------------------------------------------------------- /licenses/sqlparams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/licenses/sqlparams.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/build_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/build_docs.py -------------------------------------------------------------------------------- /resources/bump_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/bump_version.py -------------------------------------------------------------------------------- /resources/create_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/create_release.py -------------------------------------------------------------------------------- /resources/create_test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/create_test_cluster.py -------------------------------------------------------------------------------- /resources/drop_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/drop_db.py -------------------------------------------------------------------------------- /resources/drop_test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/drop_test_cluster.py -------------------------------------------------------------------------------- /resources/gen_fusion_handlers_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/gen_fusion_handlers_doc.py -------------------------------------------------------------------------------- /resources/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/init_db.py -------------------------------------------------------------------------------- /resources/singlestore-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/resources/singlestore-logo.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/setup.py -------------------------------------------------------------------------------- /singlestoredb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/__init__.py -------------------------------------------------------------------------------- /singlestoredb/ai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/ai/__init__.py -------------------------------------------------------------------------------- /singlestoredb/ai/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/ai/chat.py -------------------------------------------------------------------------------- /singlestoredb/ai/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/ai/embeddings.py -------------------------------------------------------------------------------- /singlestoredb/alchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/alchemy/__init__.py -------------------------------------------------------------------------------- /singlestoredb/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/__init__.py -------------------------------------------------------------------------------- /singlestoredb/apps/_cloud_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_cloud_functions.py -------------------------------------------------------------------------------- /singlestoredb/apps/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_config.py -------------------------------------------------------------------------------- /singlestoredb/apps/_connection_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_connection_info.py -------------------------------------------------------------------------------- /singlestoredb/apps/_dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_dashboards.py -------------------------------------------------------------------------------- /singlestoredb/apps/_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_process.py -------------------------------------------------------------------------------- /singlestoredb/apps/_python_udfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_python_udfs.py -------------------------------------------------------------------------------- /singlestoredb/apps/_stdout_supress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_stdout_supress.py -------------------------------------------------------------------------------- /singlestoredb/apps/_uvicorn_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/apps/_uvicorn_util.py -------------------------------------------------------------------------------- /singlestoredb/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/auth.py -------------------------------------------------------------------------------- /singlestoredb/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/config.py -------------------------------------------------------------------------------- /singlestoredb/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/connection.py -------------------------------------------------------------------------------- /singlestoredb/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/converters.py -------------------------------------------------------------------------------- /singlestoredb/docstring/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/LICENSE.md -------------------------------------------------------------------------------- /singlestoredb/docstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/README.md -------------------------------------------------------------------------------- /singlestoredb/docstring/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/__init__.py -------------------------------------------------------------------------------- /singlestoredb/docstring/attrdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/attrdoc.py -------------------------------------------------------------------------------- /singlestoredb/docstring/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/common.py -------------------------------------------------------------------------------- /singlestoredb/docstring/epydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/epydoc.py -------------------------------------------------------------------------------- /singlestoredb/docstring/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/google.py -------------------------------------------------------------------------------- /singlestoredb/docstring/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/numpydoc.py -------------------------------------------------------------------------------- /singlestoredb/docstring/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/parser.py -------------------------------------------------------------------------------- /singlestoredb/docstring/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | -------------------------------------------------------------------------------- /singlestoredb/docstring/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/rest.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for docstring parser.""" 2 | -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/_pydoctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/_pydoctor.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_epydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_epydoc.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_google.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_numpydoc.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_parse_from_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_parse_from_object.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_parser.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_rest.py -------------------------------------------------------------------------------- /singlestoredb/docstring/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/tests/test_util.py -------------------------------------------------------------------------------- /singlestoredb/docstring/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/docstring/util.py -------------------------------------------------------------------------------- /singlestoredb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/exceptions.py -------------------------------------------------------------------------------- /singlestoredb/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/__init__.py -------------------------------------------------------------------------------- /singlestoredb/functions/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/decorator.py -------------------------------------------------------------------------------- /singlestoredb/functions/dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/dtypes.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /singlestoredb/functions/ext/arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/arrow.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/asgi.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/json.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/mmap.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/rowdat_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/rowdat_1.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/timer.py -------------------------------------------------------------------------------- /singlestoredb/functions/ext/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/ext/utils.py -------------------------------------------------------------------------------- /singlestoredb/functions/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/signature.py -------------------------------------------------------------------------------- /singlestoredb/functions/typing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/typing/__init__.py -------------------------------------------------------------------------------- /singlestoredb/functions/typing/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/typing/numpy.py -------------------------------------------------------------------------------- /singlestoredb/functions/typing/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/typing/pandas.py -------------------------------------------------------------------------------- /singlestoredb/functions/typing/polars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/typing/polars.py -------------------------------------------------------------------------------- /singlestoredb/functions/typing/pyarrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/typing/pyarrow.py -------------------------------------------------------------------------------- /singlestoredb/functions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/functions/utils.py -------------------------------------------------------------------------------- /singlestoredb/fusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/README.md -------------------------------------------------------------------------------- /singlestoredb/fusion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/__init__.py -------------------------------------------------------------------------------- /singlestoredb/fusion/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/graphql.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handler.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/export.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/files.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/job.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/models.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/stage.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/utils.py -------------------------------------------------------------------------------- /singlestoredb/fusion/handlers/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/handlers/workspace.py -------------------------------------------------------------------------------- /singlestoredb/fusion/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/registry.py -------------------------------------------------------------------------------- /singlestoredb/fusion/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/fusion/result.py -------------------------------------------------------------------------------- /singlestoredb/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/http/__init__.py -------------------------------------------------------------------------------- /singlestoredb/http/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/http/connection.py -------------------------------------------------------------------------------- /singlestoredb/magics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/magics/__init__.py -------------------------------------------------------------------------------- /singlestoredb/magics/run_personal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/magics/run_personal.py -------------------------------------------------------------------------------- /singlestoredb/magics/run_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/magics/run_shared.py -------------------------------------------------------------------------------- /singlestoredb/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/__init__.py -------------------------------------------------------------------------------- /singlestoredb/management/billing_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/billing_usage.py -------------------------------------------------------------------------------- /singlestoredb/management/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/cluster.py -------------------------------------------------------------------------------- /singlestoredb/management/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/export.py -------------------------------------------------------------------------------- /singlestoredb/management/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/files.py -------------------------------------------------------------------------------- /singlestoredb/management/inference_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/inference_api.py -------------------------------------------------------------------------------- /singlestoredb/management/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/job.py -------------------------------------------------------------------------------- /singlestoredb/management/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/manager.py -------------------------------------------------------------------------------- /singlestoredb/management/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/organization.py -------------------------------------------------------------------------------- /singlestoredb/management/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/region.py -------------------------------------------------------------------------------- /singlestoredb/management/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/utils.py -------------------------------------------------------------------------------- /singlestoredb/management/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/management/workspace.py -------------------------------------------------------------------------------- /singlestoredb/mysql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/__init__.py -------------------------------------------------------------------------------- /singlestoredb/mysql/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/_auth.py -------------------------------------------------------------------------------- /singlestoredb/mysql/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/charset.py -------------------------------------------------------------------------------- /singlestoredb/mysql/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/connection.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/CLIENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/CLIENT.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/COMMAND.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/COMMAND.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/CR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/CR.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/ER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/ER.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/EXTENDED_TYPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/EXTENDED_TYPE.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/FIELD_TYPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/FIELD_TYPE.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/FLAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/FLAG.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/SERVER_STATUS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/SERVER_STATUS.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/VECTOR_TYPE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/constants/VECTOR_TYPE.py -------------------------------------------------------------------------------- /singlestoredb/mysql/constants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/mysql/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/converters.py -------------------------------------------------------------------------------- /singlestoredb/mysql/cursors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/cursors.py -------------------------------------------------------------------------------- /singlestoredb/mysql/err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/err.py -------------------------------------------------------------------------------- /singlestoredb/mysql/optionfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/optionfile.py -------------------------------------------------------------------------------- /singlestoredb/mysql/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/protocol.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/__init__.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/base.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/conftest.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/data/load_local_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/data/load_local_data.txt -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/data/load_local_warn_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/data/load_local_warn_data.txt -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_DictCursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_DictCursor.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_SSCursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_SSCursor.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_basic.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_connection.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_converters.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_cursor.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_err.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_issues.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_load_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_load_local.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_nextset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_nextset.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/test_optionfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/test_optionfile.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/__init__.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/test_MySQLdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/test_MySQLdb/__init__.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/test_MySQLdb/capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/test_MySQLdb/capabilities.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/test_MySQLdb/dbapi20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/test_MySQLdb/dbapi20.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py -------------------------------------------------------------------------------- /singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py -------------------------------------------------------------------------------- /singlestoredb/mysql/times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/mysql/times.py -------------------------------------------------------------------------------- /singlestoredb/notebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/notebook/__init__.py -------------------------------------------------------------------------------- /singlestoredb/notebook/_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/notebook/_objects.py -------------------------------------------------------------------------------- /singlestoredb/notebook/_portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/notebook/_portal.py -------------------------------------------------------------------------------- /singlestoredb/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/pytest.py -------------------------------------------------------------------------------- /singlestoredb/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/server/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/server/docker.py -------------------------------------------------------------------------------- /singlestoredb/server/free_tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/server/free_tier.py -------------------------------------------------------------------------------- /singlestoredb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/tests/alltypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/alltypes.sql -------------------------------------------------------------------------------- /singlestoredb/tests/alltypes_no_nulls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/alltypes_no_nulls.sql -------------------------------------------------------------------------------- /singlestoredb/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/conftest.py -------------------------------------------------------------------------------- /singlestoredb/tests/empty.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/tests/ext_funcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/ext_funcs/__init__.py -------------------------------------------------------------------------------- /singlestoredb/tests/local_infile.csv: -------------------------------------------------------------------------------- 1 | John,Doe,34 2 | Sandy,Smith,24 3 | Patty,Jones,57 4 | -------------------------------------------------------------------------------- /singlestoredb/tests/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test.ipynb -------------------------------------------------------------------------------- /singlestoredb/tests/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test.sql -------------------------------------------------------------------------------- /singlestoredb/tests/test2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test2.ipynb -------------------------------------------------------------------------------- /singlestoredb/tests/test2.sql: -------------------------------------------------------------------------------- 1 | -- Nearly empty file for Stages test 2 | -------------------------------------------------------------------------------- /singlestoredb/tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_basics.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_config.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_connection.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_dbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_dbapi.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_exceptions.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_ext_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_ext_func.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_ext_func_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_ext_func_data.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_fusion.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_http.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_management.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_plugin.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_results.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_types.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_udf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_udf.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_udf_returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_udf_returns.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_vectorstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_vectorstore.py -------------------------------------------------------------------------------- /singlestoredb/tests/test_xdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/test_xdict.py -------------------------------------------------------------------------------- /singlestoredb/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/tests/utils.py -------------------------------------------------------------------------------- /singlestoredb/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/types.py -------------------------------------------------------------------------------- /singlestoredb/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /singlestoredb/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/config.py -------------------------------------------------------------------------------- /singlestoredb/utils/convert_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/convert_rows.py -------------------------------------------------------------------------------- /singlestoredb/utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/debug.py -------------------------------------------------------------------------------- /singlestoredb/utils/dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/dtypes.py -------------------------------------------------------------------------------- /singlestoredb/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/events.py -------------------------------------------------------------------------------- /singlestoredb/utils/mogrify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/mogrify.py -------------------------------------------------------------------------------- /singlestoredb/utils/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/results.py -------------------------------------------------------------------------------- /singlestoredb/utils/xdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/utils/xdict.py -------------------------------------------------------------------------------- /singlestoredb/vectorstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/vectorstore.py -------------------------------------------------------------------------------- /singlestoredb/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/singlestoredb/warnings.py -------------------------------------------------------------------------------- /sqlx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/sqlx/__init__.py -------------------------------------------------------------------------------- /sqlx/magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singlestore-labs/singlestoredb-python/HEAD/sqlx/magic.py --------------------------------------------------------------------------------