modal 1.2.1.dev0__py3-none-any.whl → 1.2.1.dev2__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.
Potentially problematic release.
This version of modal might be problematic. Click here for more details.
- modal/client.pyi +2 -2
- modal/runner.py +11 -1
- {modal-1.2.1.dev0.dist-info → modal-1.2.1.dev2.dist-info}/METADATA +5 -5
- {modal-1.2.1.dev0.dist-info → modal-1.2.1.dev2.dist-info}/RECORD +9 -9
- modal_version/__init__.py +1 -1
- {modal-1.2.1.dev0.dist-info → modal-1.2.1.dev2.dist-info}/WHEEL +0 -0
- {modal-1.2.1.dev0.dist-info → modal-1.2.1.dev2.dist-info}/entry_points.txt +0 -0
- {modal-1.2.1.dev0.dist-info → modal-1.2.1.dev2.dist-info}/licenses/LICENSE +0 -0
- {modal-1.2.1.dev0.dist-info → modal-1.2.1.dev2.dist-info}/top_level.txt +0 -0
modal/client.pyi
CHANGED
|
@@ -33,7 +33,7 @@ class _Client:
|
|
|
33
33
|
server_url: str,
|
|
34
34
|
client_type: int,
|
|
35
35
|
credentials: typing.Optional[tuple[str, str]],
|
|
36
|
-
version: str = "1.2.1.
|
|
36
|
+
version: str = "1.2.1.dev2",
|
|
37
37
|
):
|
|
38
38
|
"""mdmd:hidden
|
|
39
39
|
The Modal client object is not intended to be instantiated directly by users.
|
|
@@ -164,7 +164,7 @@ class Client:
|
|
|
164
164
|
server_url: str,
|
|
165
165
|
client_type: int,
|
|
166
166
|
credentials: typing.Optional[tuple[str, str]],
|
|
167
|
-
version: str = "1.2.1.
|
|
167
|
+
version: str = "1.2.1.dev2",
|
|
168
168
|
):
|
|
169
169
|
"""mdmd:hidden
|
|
170
170
|
The Modal client object is not intended to be instantiated directly by users.
|
modal/runner.py
CHANGED
|
@@ -35,7 +35,7 @@ from .client import HEARTBEAT_INTERVAL, HEARTBEAT_TIMEOUT, _Client
|
|
|
35
35
|
from .cls import _Cls
|
|
36
36
|
from .config import config, logger
|
|
37
37
|
from .environments import _get_environment_cached
|
|
38
|
-
from .exception import InteractiveTimeoutError, InvalidError, RemoteError, _CliUserExecutionError
|
|
38
|
+
from .exception import ConnectionError, InteractiveTimeoutError, InvalidError, RemoteError, _CliUserExecutionError
|
|
39
39
|
from .output import _get_output_manager, enable_output
|
|
40
40
|
from .running_app import RunningApp, running_app_from_layout
|
|
41
41
|
from .sandbox import _Sandbox
|
|
@@ -405,6 +405,16 @@ async def _run_app(
|
|
|
405
405
|
)
|
|
406
406
|
)
|
|
407
407
|
return
|
|
408
|
+
except ConnectionError as e:
|
|
409
|
+
# If we lose connection to the server after a detached App has started running, it will continue
|
|
410
|
+
# I think we can only exit "nicely" if we are able to print output though, otherwise we should raise
|
|
411
|
+
if detach and (output_mgr := _get_output_manager()):
|
|
412
|
+
output_mgr.print(
|
|
413
|
+
"Connection lost, but detached App will continue running: "
|
|
414
|
+
f"[magenta]{running_app.app_page_url}[/magenta]"
|
|
415
|
+
)
|
|
416
|
+
return
|
|
417
|
+
raise
|
|
408
418
|
except BaseException as e:
|
|
409
419
|
logger.info("Exception during app run")
|
|
410
420
|
await _status_based_disconnect(client, running_app.app_id, e)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: modal
|
|
3
|
-
Version: 1.2.1.
|
|
3
|
+
Version: 1.2.1.dev2
|
|
4
4
|
Summary: Python client library for Modal
|
|
5
5
|
Author-email: Modal Labs <support@modal.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -32,14 +32,14 @@ Requires-Dist: watchfiles
|
|
|
32
32
|
Requires-Dist: typing_extensions~=4.6
|
|
33
33
|
Dynamic: license-file
|
|
34
34
|
|
|
35
|
-
# Modal Python
|
|
35
|
+
# Modal Python SDK
|
|
36
36
|
|
|
37
37
|
[](https://pypi.org/project/modal/)
|
|
38
38
|
[](https://github.com/modal-labs/modal-client/blob/master/LICENSE)
|
|
39
39
|
[](https://github.com/modal-labs/modal-client/actions/workflows/ci-cd.yml)
|
|
40
40
|
[](https://modal.com/slack)
|
|
41
41
|
|
|
42
|
-
The [Modal](https://modal.com/) Python
|
|
42
|
+
The [Modal](https://modal.com/) Python SDK provides convenient, on-demand
|
|
43
43
|
access to serverless cloud compute from Python scripts on your local computer.
|
|
44
44
|
|
|
45
45
|
## Documentation
|
|
@@ -53,10 +53,10 @@ a [user guide](https://modal.com/docs/guide), and the detailed
|
|
|
53
53
|
|
|
54
54
|
**This library requires Python 3.9 – 3.13.**
|
|
55
55
|
|
|
56
|
-
Install the package with `pip`:
|
|
56
|
+
Install the package with `uv` or `pip`:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
pip install modal
|
|
59
|
+
uv pip install modal
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
You can create a Modal account (or link your existing one) directly on the
|
|
@@ -24,7 +24,7 @@ modal/app.pyi,sha256=6wlYK9nNp0GuHXyUxGmcZ6J92EjsWS-KK6KRuejqXEY,49718
|
|
|
24
24
|
modal/billing.py,sha256=zmQ3bcCJlwa4KD1IA_QgdWpm1pn13c-7qfy79iEauYI,195
|
|
25
25
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
|
26
26
|
modal/client.py,sha256=kyAIVB3Ay-XKJizQ_1ufUFB__EagV0MLmHJpyYyJ7J0,18636
|
|
27
|
-
modal/client.pyi,sha256=
|
|
27
|
+
modal/client.pyi,sha256=jHpuYXJ0DciaVJ6mj17NyU14Ekx6hPoVtCElebrX4-0,15829
|
|
28
28
|
modal/cloud_bucket_mount.py,sha256=I2GRXYhOWLIz2kJZjXu75jAm9EJkBNcutGc6jR2ReUw,5928
|
|
29
29
|
modal/cloud_bucket_mount.pyi,sha256=VuUOipMIHqFXMkD-3g2bsoqpSxV5qswlFHDOqPQzYAo,7405
|
|
30
30
|
modal/cls.py,sha256=_Dzu8Tjjp_XukJxfBioAeHf03egKQYuKj7SrHJiK6CE,40676
|
|
@@ -64,7 +64,7 @@ modal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
64
64
|
modal/queue.py,sha256=aaH3SNWeh_HjEyVUtFiN345v0GJFoucJ6aNDrDggWZQ,25775
|
|
65
65
|
modal/queue.pyi,sha256=mFu7GFFVFNLU9VZshnfekEsb-ABgpjdhJ07KXHvdv3A,37256
|
|
66
66
|
modal/retries.py,sha256=IvNLDM0f_GLUDD5VgEDoN09C88yoxSrCquinAuxT1Sc,5205
|
|
67
|
-
modal/runner.py,sha256=
|
|
67
|
+
modal/runner.py,sha256=ZqXk12TyiuyZQXlDhSTXKylg-G0_I0uK6fzdJ_qFV7o,25182
|
|
68
68
|
modal/runner.pyi,sha256=vUDRKqLz09QvZsaCH1gTG_iujewj-eGxxb6-VmN6eAw,8531
|
|
69
69
|
modal/running_app.py,sha256=v61mapYNV1-O-Uaho5EfJlryMLvIT9We0amUOSvSGx8,1188
|
|
70
70
|
modal/sandbox.py,sha256=oxFhpz3PuIgybsS4k36EuVmGcEvtYqjJBx0fAFMX7ak,45981
|
|
@@ -155,7 +155,7 @@ modal/experimental/__init__.py,sha256=9gkVuDmu3m4TlKoU3MzEtTOemUSs8EEOWba40s7Aa0
|
|
|
155
155
|
modal/experimental/flash.py,sha256=C4sef08rARYFllsgtqukFmYL18SZW0_JpMS0BejDcUs,28552
|
|
156
156
|
modal/experimental/flash.pyi,sha256=vV_OQhtdrPn8SW0XrBK-aLLHHIvxAzLzwFbWrke-m74,15463
|
|
157
157
|
modal/experimental/ipython.py,sha256=TrCfmol9LGsRZMeDoeMPx3Hv3BFqQhYnmD_iH0pqdhk,2904
|
|
158
|
-
modal-1.2.1.
|
|
158
|
+
modal-1.2.1.dev2.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
|
159
159
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
|
160
160
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
|
161
161
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
|
@@ -183,10 +183,10 @@ modal_proto/task_command_router_pb2.py,sha256=_pD2ZpU0bNzhwBdzmLoLyLtAtftI_Agxwn
|
|
|
183
183
|
modal_proto/task_command_router_pb2.pyi,sha256=EyDgXPLr7alqjXYERV8w_MPuO404x0uCppmSkrfE9IE,14589
|
|
184
184
|
modal_proto/task_command_router_pb2_grpc.py,sha256=uEQ0HdrCp8v-9bB5yIic9muA8spCShLHY6Bz9cCgOUE,10114
|
|
185
185
|
modal_proto/task_command_router_pb2_grpc.pyi,sha256=s3Yxsrawdj4nr8vqQqsAxyX6ilWaGbdECy425KKbLIA,3301
|
|
186
|
-
modal_version/__init__.py,sha256=
|
|
186
|
+
modal_version/__init__.py,sha256=GCaHVGK1ZjqKf6ijAbhQY_a_dbrWdehPBnrLLk5NmTk,120
|
|
187
187
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
|
188
|
-
modal-1.2.1.
|
|
189
|
-
modal-1.2.1.
|
|
190
|
-
modal-1.2.1.
|
|
191
|
-
modal-1.2.1.
|
|
192
|
-
modal-1.2.1.
|
|
188
|
+
modal-1.2.1.dev2.dist-info/METADATA,sha256=_aTTdC1oR_JhlkuGYy_jlGjn74hcripHBaz73TARoPM,2483
|
|
189
|
+
modal-1.2.1.dev2.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
190
|
+
modal-1.2.1.dev2.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
|
191
|
+
modal-1.2.1.dev2.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
|
192
|
+
modal-1.2.1.dev2.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|