Datalayer VS Code Extension - v0.0.6
    Preparing search index...

    Module webview/services/serviceManagerFactory

    // Create Pyodide manager
    const pyodideManager = await ServiceManagerFactory.create('pyodide');

    // Create remote manager with authentication
    const remoteManager = await ServiceManagerFactory.create('remote', {
    url: 'http://localhost:8888',
    token: 'secret-token'
    });

    // Create local kernel manager
    const localManager = await ServiceManagerFactory.create('local', {
    kernelId: 'kernel-123',
    kernelName: 'Python 3.11',
    url: 'local-kernel://python311'
    });

    Classes

    ServiceManagerFactory

    Interfaces

    LocalManagerOptions
    RemoteManagerOptions

    Type Aliases

    ServiceManagerConfig
    ServiceManagerOptions