MCPcopy Create free account
hub / github.com/deepnote/vscode-deepnote / startJupyterServer

Function startJupyterServer

src/test/common.ts:247–257  ·  view source on GitHub ↗
(options?: {
    token?: string;
    port?: number;
    useCert?: boolean;
    jupyterLab?: boolean;
    password?: string;
    detached?: boolean;
    standalone?: boolean;
})

Source from the content-addressed store, hash-verified

245}
246
247export async function startJupyterServer(options?: {
248 token?: string;
249 port?: number;
250 useCert?: boolean;
251 jupyterLab?: boolean;
252 password?: string;
253 detached?: boolean;
254 standalone?: boolean;
255}): Promise<{ url: string } & IDisposable> {
256 return API.startJupyterServer(options);
257}
258
259export async function stopJupyterServer() {
260 if (API.stopJupyterServer) {

Calls 1

startJupyterServerMethod · 0.80

Tested by

no test coverage detected