feat: expose Jupyter shell through web app

This commit is contained in:
lda
2026-08-30 19:19:49 +07:00 Verified
parent a77f146a72
commit 6315235e16
11 changed files with 220 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
from .app import JupyterApp
from .shell import JupyterShell
from .transport import InputRequest, JupyterTransport, KernelMessage
__all__ = [
"InputRequest",
"JupyterApp",
"JupyterShell",
"JupyterTransport",
"KernelMessage",
]