This is the output from running open from url and passing in â:16686/searchâ. I couldnât get curl to work from the terminal - and unfortunately the output did not change when I ran it at the start of the session and after making a submission so doubt itâs particularly helpful. No rush but do let me know if you find anything on your end or if I should run something else. Appreciate the help!
<!doctype html>JupyterLab {âallow_hidden_filesâ: false, âappNameâ: âJupyterLabâ, âappNamespaceâ: âlabâ, âappSettingsDirâ: â/usr/local/share/jupyter/lab/settingsâ, âappUrlâ: â/labâ, âappVersionâ: â4.4.6â, âbaseUrlâ: â/lab/â, âbuildAvailableâ: true, âbuildCheckâ: true, âcacheFilesâ: false, âcopyAbsolutePathâ: false, âdelete_to_trashâ: true, âdevModeâ: false, âdisabledExtensionsâ: , âexposeAppInBrowserâ: false, âextensionManagerâ: {âcan_installâ: true, âinstall_pathâ: â/usr/localâ, ânameâ: âPyPIâ}, âextraLabextensionsPathâ: , âfederated_extensionsâ: [{âentrypointsâ: null, âextensionâ: â./extensionâ, âloadâ: âstatic/remoteEntry.5cbb9d2323598fbda535.jsâ, ânameâ: âjupyterlab_pygmentsâ, âstyleâ: â./styleâ}, {âentrypointsâ: null, âextensionâ: â./extensionâ, âloadâ: âstatic/remoteEntry.84740c0bf9a6442a86fd.jsâ, ânameâ: âjupyterlab-jupytextâ}, {âentrypointsâ: null, âextensionâ: â./extensionâ, âloadâ: âstatic/remoteEntry.35b6c65bd99dab37b910.jsâ, ânameâ: â@jupyter-widgets/jupyterlab-managerâ}, {âentrypointsâ: null, âextensionâ: â./extensionâ, âloadâ: âstatic/remoteEntry.c3551e86769ef3973316.jsâ, ânameâ: â '@'hadim/jupyter-archiveâ, âstyleâ: â./styleâ}, {âentrypointsâ: null, âextensionâ: â./extensionâ, âloadâ: âstatic/remoteEntry.09935b5f2738ef3c32f2.jsâ, ânameâ: â@jupyter-server/resource-usageâ, âstyleâ: â./styleâ}], âfullAppUrlâ: â/lab/labâ, âfullLabextensionsUrlâ: â/lab/lab/extensionsâ, âfullLicensesUrlâ: â/lab/lab/api/licensesâ, âfullListingsUrlâ: â/lab/lab/api/listingsâ, âfullMathjaxUrlâ: â``https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.jsâ``, âfullSettingsUrlâ: â/lab/lab/api/settingsâ, âfullStaticUrlâ: â/lab/static/labâ, âfullThemesUrlâ: â/lab/lab/api/themesâ, âfullTranslationsApiUrlâ: â/lab/lab/api/translationsâ, âfullTreeUrlâ: â/lab/lab/treeâ, âfullWorkspacesApiUrlâ: â/lab/lab/api/workspacesâ, âignorePluginsâ: , âlabextensionsPathâ: [â/root/.local/share/jupyter/labextensionsâ, â/usr/local/share/jupyter/labextensionsâ, â/usr/share/jupyter/labextensionsâ], âlabextensionsUrlâ: â/lab/extensionsâ, âlicensesUrlâ: â/lab/api/licensesâ, âlistingsUrlâ: â/lab/api/listingsâ, âmathjaxConfigâ: âTeX-AMS_HTML-full,Safeâ, âmodeâ: âmultiple-documentâ, ânewsâ: {âdisabledâ: false}, ânotebookStartsKernelâ: true, ânotebookVersionâ: â[2, 17, 0]â, âpreferredPathâ: â/â, âquitButtonâ: true, ârootUriâ: âfile:///dli/taskâ, âschemasDirâ: â/usr/local/share/jupyter/lab/schemasâ, âserverRootâ: â/dli/taskâ, âsettingsUrlâ: â/lab/api/settingsâ, âstaticDirâ: â/usr/local/share/jupyter/lab/staticâ, âstore_idâ: 4, âtemplatesDirâ: â/usr/local/share/jupyter/lab/staticâ, âterminalsAvailableâ: true, âthemesDirâ: â/usr/local/share/jupyter/lab/themesâ, âthemesUrlâ: â/lab/api/themesâ, âtokenâ: âe913f361dc9ce9b520c2b594a3bbe955â, âtranslationsApiUrlâ: â/lab/api/translationsâ, âtreePathâ: â:16686/searchâ, âtreeUrlâ: â/lab/treeâ, âuntracked_message_typesâ: [âcomm_info_requestâ, âcomm_info_replyâ, âkernel_info_requestâ, âkernel_info_replyâ, âshutdown_requestâ, âshutdown_replyâ, âinterrupt_requestâ, âinterrupt_replyâ, âdebug_requestâ, âdebug_replyâ, âstreamâ, âdisplay_dataâ, âupdate_display_dataâ, âexecute_inputâ, âexecute_resultâ, âerrorâ, âstatusâ, âclear_outputâ, âdebug_eventâ, âinput_requestâ, âinput_replyâ], âuserSettingsDirâ: â/root/.jupyter/lab/user-settingsâ, âvirtualDocumentsUriâ: âfile:///dli/task/.virtual_documentsâ, âworkspaceâ: âdefaultâ, âworkspacesApiUrlâ: â/lab/api/workspacesâ, âworkspacesDirâ: â/root/.jupyter/lab/workspacesâ, âwsUrlâ: ââ} /* Remove token from URL. */
(function () {
var location = window.location;
var search = location.search;
// If there is no query string, bail.
if (search.length <= 1) {
return;
}
// Rebuild the query string without the `token`.
var query = '?' + search.slice(1).split('&')
.filter(function (param) { return param.split('=')[0] !== 'token'; })
.join('&');
// Rebuild the URL with the new query string.
var url = location.origin + location.pathname +
(query !== '?' ? query : '') + location.hash;
if (url === location.href) {
return;
}
window.history.replaceState({ }, '', url);
})();