unitlab 2.3.11__py3-none-any.whl → 2.3.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unitlab/client.py +8 -5
- {unitlab-2.3.11.dist-info → unitlab-2.3.12.dist-info}/METADATA +1 -1
- {unitlab-2.3.11.dist-info → unitlab-2.3.12.dist-info}/RECORD +7 -7
- {unitlab-2.3.11.dist-info → unitlab-2.3.12.dist-info}/LICENSE.md +0 -0
- {unitlab-2.3.11.dist-info → unitlab-2.3.12.dist-info}/WHEEL +0 -0
- {unitlab-2.3.11.dist-info → unitlab-2.3.12.dist-info}/entry_points.txt +0 -0
- {unitlab-2.3.11.dist-info → unitlab-2.3.12.dist-info}/top_level.txt +0 -0
unitlab/client.py
CHANGED
@@ -354,14 +354,17 @@ class UnitlabClient:
|
|
354
354
|
try:
|
355
355
|
logger.info("Starting Jupyter notebook...")
|
356
356
|
|
357
|
+
# Use NotebookApp for jupyter notebook (not jupyter-server)
|
357
358
|
cmd = [
|
358
359
|
"jupyter", "notebook",
|
359
360
|
"--no-browser",
|
360
|
-
"--
|
361
|
-
"--
|
362
|
-
"--
|
363
|
-
"--
|
364
|
-
"--
|
361
|
+
"--NotebookApp.token=''",
|
362
|
+
"--NotebookApp.password=''",
|
363
|
+
"--NotebookApp.allow_origin='*'",
|
364
|
+
"--NotebookApp.ip='0.0.0.0'", # Listen on all interfaces
|
365
|
+
"--NotebookApp.port=8888",
|
366
|
+
"--NotebookApp.allow_root=True", # Allow root if needed
|
367
|
+
"--NotebookApp.disable_check_xsrf=True" # For Cloudflare proxy
|
365
368
|
]
|
366
369
|
|
367
370
|
self.jupyter_proc = subprocess.Popen(
|
@@ -1,16 +1,16 @@
|
|
1
1
|
unitlab/__init__.py,sha256=Wtk5kQ_MTlxtd3mxJIn2qHVK5URrVcasMMPjD3BtrVM,214
|
2
2
|
unitlab/__main__.py,sha256=6Hs2PV7EYc5Tid4g4OtcLXhqVHiNYTGzSBdoOnW2HXA,29
|
3
3
|
unitlab/binary_manager.py,sha256=Q1v2Odm0hk_3g7jfDUJQfkjEbUbSjtuyo2JDUyWjDrk,5468
|
4
|
-
unitlab/client.py,sha256=
|
4
|
+
unitlab/client.py,sha256=V5fTgbprmMsnMwD_FPn7oZh0KK6hdnqB4BYuY4D-JRw,24558
|
5
5
|
unitlab/cloudflare_api_tunnel.py,sha256=d95e4c4SvjpCtnQz_aGTvP-ma9fkxsbvV-oIq3aWxIk,15533
|
6
6
|
unitlab/exceptions.py,sha256=68Tr6LreEzjQ3Vns8HAaWdtewtkNUJOvPazbf6NSnXU,950
|
7
7
|
unitlab/main.py,sha256=h1WG6up6STt-2fJZAkqnxenwJ7kmkqnkfq5Zs4xLSeI,5257
|
8
8
|
unitlab/tunnel_config.py,sha256=7CiAqasfg26YQfJYXapCBQPSoqw4jIx6yR64saybLLo,8312
|
9
9
|
unitlab/tunnel_service_token.py,sha256=ji96a4s4W2cFJrHZle0zBD85Ac_T862-gCKzBUomrxM,3125
|
10
10
|
unitlab/utils.py,sha256=83ekAxxfXecFTg76Z62BGDybC_skKJHYoLyawCD9wGM,1920
|
11
|
-
unitlab-2.3.
|
12
|
-
unitlab-2.3.
|
13
|
-
unitlab-2.3.
|
14
|
-
unitlab-2.3.
|
15
|
-
unitlab-2.3.
|
16
|
-
unitlab-2.3.
|
11
|
+
unitlab-2.3.12.dist-info/LICENSE.md,sha256=Gn7RRvByorAcAaM-WbyUpsgi5ED1-bKFFshbWfYYz2Y,1069
|
12
|
+
unitlab-2.3.12.dist-info/METADATA,sha256=bMIkAY0bQjPXwYU6D1Rlrl47DoqwPZqW78OJP5NXIPA,844
|
13
|
+
unitlab-2.3.12.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
14
|
+
unitlab-2.3.12.dist-info/entry_points.txt,sha256=ig-PjKEqSCj3UTdyANgEi4tsAU84DyXdaOJ02NHX4bY,45
|
15
|
+
unitlab-2.3.12.dist-info/top_level.txt,sha256=Al4ZlTYE3fTJK2o6YLCDMH5_DjuQkffRBMxgmWbKaqQ,8
|
16
|
+
unitlab-2.3.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|