modal 1.0.1.dev2__py3-none-any.whl → 1.0.1.dev4__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.
- modal/client.py +3 -2
- modal/client.pyi +2 -2
- modal/image.py +3 -0
- modal/image.pyi +2 -0
- {modal-1.0.1.dev2.dist-info → modal-1.0.1.dev4.dist-info}/METADATA +1 -1
- {modal-1.0.1.dev2.dist-info → modal-1.0.1.dev4.dist-info}/RECORD +11 -11
- modal_version/__init__.py +1 -1
- {modal-1.0.1.dev2.dist-info → modal-1.0.1.dev4.dist-info}/WHEEL +0 -0
- {modal-1.0.1.dev2.dist-info → modal-1.0.1.dev4.dist-info}/entry_points.txt +0 -0
- {modal-1.0.1.dev2.dist-info → modal-1.0.1.dev4.dist-info}/licenses/LICENSE +0 -0
- {modal-1.0.1.dev2.dist-info → modal-1.0.1.dev4.dist-info}/top_level.txt +0 -0
modal/client.py
CHANGED
@@ -3,6 +3,7 @@ import asyncio
|
|
3
3
|
import os
|
4
4
|
import platform
|
5
5
|
import sys
|
6
|
+
import urllib.parse
|
6
7
|
import warnings
|
7
8
|
from collections.abc import AsyncGenerator, AsyncIterator, Collection, Mapping
|
8
9
|
from typing import (
|
@@ -50,8 +51,8 @@ def _get_metadata(client_type: int, credentials: Optional[tuple[str, str]], vers
|
|
50
51
|
"x-modal-client-version": version,
|
51
52
|
"x-modal-client-type": str(client_type),
|
52
53
|
"x-modal-python-version": python_version,
|
53
|
-
"x-modal-node": platform.node(),
|
54
|
-
"x-modal-platform": platform_str,
|
54
|
+
"x-modal-node": urllib.parse.quote(platform.node()),
|
55
|
+
"x-modal-platform": urllib.parse.quote(platform_str),
|
55
56
|
}
|
56
57
|
if credentials and client_type == api_pb2.CLIENT_TYPE_CLIENT:
|
57
58
|
token_id, token_secret = credentials
|
modal/client.pyi
CHANGED
@@ -31,7 +31,7 @@ class _Client:
|
|
31
31
|
server_url: str,
|
32
32
|
client_type: int,
|
33
33
|
credentials: typing.Optional[tuple[str, str]],
|
34
|
-
version: str = "1.0.1.
|
34
|
+
version: str = "1.0.1.dev4",
|
35
35
|
): ...
|
36
36
|
def is_closed(self) -> bool: ...
|
37
37
|
@property
|
@@ -94,7 +94,7 @@ class Client:
|
|
94
94
|
server_url: str,
|
95
95
|
client_type: int,
|
96
96
|
credentials: typing.Optional[tuple[str, str]],
|
97
|
-
version: str = "1.0.1.
|
97
|
+
version: str = "1.0.1.dev4",
|
98
98
|
): ...
|
99
99
|
def is_closed(self) -> bool: ...
|
100
100
|
@property
|
modal/image.py
CHANGED
@@ -423,6 +423,9 @@ class _Image(_Object, type_prefix="im"):
|
|
423
423
|
self._deferred_mounts = other._deferred_mounts
|
424
424
|
self._added_python_source_set = other._added_python_source_set
|
425
425
|
|
426
|
+
def _get_metadata(self) -> Optional[Message]:
|
427
|
+
return self._metadata
|
428
|
+
|
426
429
|
def _hydrate_metadata(self, metadata: Optional[Message]):
|
427
430
|
env_image_id = config.get("image_id") # set as an env var in containers
|
428
431
|
if env_image_id == self.object_id:
|
modal/image.pyi
CHANGED
@@ -96,6 +96,7 @@ class _Image(modal._object._Object):
|
|
96
96
|
|
97
97
|
def _initialize_from_empty(self): ...
|
98
98
|
def _initialize_from_other(self, other: _Image): ...
|
99
|
+
def _get_metadata(self) -> typing.Optional[google.protobuf.message.Message]: ...
|
99
100
|
def _hydrate_metadata(self, metadata: typing.Optional[google.protobuf.message.Message]): ...
|
100
101
|
def _add_mount_layer_or_copy(self, mount: modal.mount._Mount, copy: bool = False): ...
|
101
102
|
@property
|
@@ -352,6 +353,7 @@ class Image(modal.object.Object):
|
|
352
353
|
def __init__(self, *args, **kwargs): ...
|
353
354
|
def _initialize_from_empty(self): ...
|
354
355
|
def _initialize_from_other(self, other: Image): ...
|
356
|
+
def _get_metadata(self) -> typing.Optional[google.protobuf.message.Message]: ...
|
355
357
|
def _hydrate_metadata(self, metadata: typing.Optional[google.protobuf.message.Message]): ...
|
356
358
|
def _add_mount_layer_or_copy(self, mount: modal.mount.Mount, copy: bool = False): ...
|
357
359
|
@property
|
@@ -21,8 +21,8 @@ modal/_watcher.py,sha256=K6LYnlmSGQB4tWWI9JADv-tvSvQ1j522FwT71B51CX8,3584
|
|
21
21
|
modal/app.py,sha256=NZ_rJ9TuMfiNiLg8-gOFgufD5flGtXWPHOZI0gdD3hE,46585
|
22
22
|
modal/app.pyi,sha256=4-b_vbe3lNAqQPcMRpQCEDsE1zsVkQRJGUql9B7HvbM,22659
|
23
23
|
modal/call_graph.py,sha256=1g2DGcMIJvRy-xKicuf63IVE98gJSnQsr8R_NVMptNc,2581
|
24
|
-
modal/client.py,sha256=
|
25
|
-
modal/client.pyi,sha256=
|
24
|
+
modal/client.py,sha256=OwISJvkgMb-rHm9Gc4i-7YcDgGiZgwJ7F_PzwZH7a6Q,16847
|
25
|
+
modal/client.pyi,sha256=LYhZaZrYSv7I_1RYHtR9WeCPPOsvMu0o781DSsR9kb4,8457
|
26
26
|
modal/cloud_bucket_mount.py,sha256=YOe9nnvSr4ZbeCn587d7_VhE9IioZYRvF9VYQTQux08,5914
|
27
27
|
modal/cloud_bucket_mount.pyi,sha256=30T3K1a89l6wzmEJ_J9iWv9SknoGqaZDx59Xs-ZQcmk,1607
|
28
28
|
modal/cls.py,sha256=dBbeARwOWftlKd1cwtM0cHFtQWSWkwVXwVmOV4w0SyI,37907
|
@@ -41,8 +41,8 @@ modal/file_pattern_matcher.py,sha256=wov-otB5M1oTdrYDtR2_VgacYin2srdtAP4McA1Cqzw
|
|
41
41
|
modal/functions.py,sha256=kcNHvqeGBxPI7Cgd57NIBBghkfbeFJzXO44WW0jSmao,325
|
42
42
|
modal/functions.pyi,sha256=5T58OucdNU4I-LqhBdwsWSAGka-Wa8nP2GcZ5K1bOL0,16236
|
43
43
|
modal/gpu.py,sha256=Kbhs_u49FaC2Zi0TjCdrpstpRtT5eZgecynmQi5IZVE,6752
|
44
|
-
modal/image.py,sha256=
|
45
|
-
modal/image.pyi,sha256=
|
44
|
+
modal/image.py,sha256=bGs4FF9TofGQOy2RRjedD2MTyIsmF-9Gdk-I7BitMRw,91832
|
45
|
+
modal/image.pyi,sha256=2xjB6XOZDtm_chDdd90UoIj8pnDt5hCg6bOmu5fNaA4,25625
|
46
46
|
modal/io_streams.py,sha256=YDZVQSDv05DeXg5TwcucC9Rj5hQBx2GXdluan9rIUpw,15467
|
47
47
|
modal/io_streams.pyi,sha256=1UK6kWLREASQfq-wL9wSp5iqjLU0egRZPDn4LXs1PZY,5136
|
48
48
|
modal/mount.py,sha256=HbpGQbqqT5pTP4dh8j6USWXb2Fr1ro3V1uHIardkya4,30726
|
@@ -146,7 +146,7 @@ modal/requirements/2024.10.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddR
|
|
146
146
|
modal/requirements/PREVIEW.txt,sha256=qD-5cVIVM9wXesJ6JC89Ew-3m2KjEElUz3jaw_MddRo,296
|
147
147
|
modal/requirements/README.md,sha256=9tK76KP0Uph7O0M5oUgsSwEZDj5y-dcUPsnpR0Sc-Ik,854
|
148
148
|
modal/requirements/base-images.json,sha256=57vMSqzMbLBxw5tFWSaMiIkkVEps4JfX5PAtXGnkS4U,740
|
149
|
-
modal-1.0.1.
|
149
|
+
modal-1.0.1.dev4.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
|
150
150
|
modal_docs/__init__.py,sha256=svYKtV8HDwDCN86zbdWqyq5T8sMdGDj0PVlzc2tIxDM,28
|
151
151
|
modal_docs/gen_cli_docs.py,sha256=c1yfBS_x--gL5bs0N4ihMwqwX8l3IBWSkBAKNNIi6bQ,3801
|
152
152
|
modal_docs/gen_reference_docs.py,sha256=d_CQUGQ0rfw28u75I2mov9AlS773z9rG40-yq5o7g2U,6359
|
@@ -169,10 +169,10 @@ modal_proto/options_pb2.pyi,sha256=l7DBrbLO7q3Ir-XDkWsajm0d0TQqqrfuX54i4BMpdQg,1
|
|
169
169
|
modal_proto/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
170
170
|
modal_proto/options_pb2_grpc.pyi,sha256=CImmhxHsYnF09iENPoe8S4J-n93jtgUYD2JPAc0yJSI,247
|
171
171
|
modal_proto/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
172
|
-
modal_version/__init__.py,sha256=
|
172
|
+
modal_version/__init__.py,sha256=oGyp944pkdyLRc5vbQGDiYwDeaBD5G6amnXAujX-UBE,120
|
173
173
|
modal_version/__main__.py,sha256=2FO0yYQQwDTh6udt1h-cBnGd1c4ZyHnHSI4BksxzVac,105
|
174
|
-
modal-1.0.1.
|
175
|
-
modal-1.0.1.
|
176
|
-
modal-1.0.1.
|
177
|
-
modal-1.0.1.
|
178
|
-
modal-1.0.1.
|
174
|
+
modal-1.0.1.dev4.dist-info/METADATA,sha256=nzAHqppXZsETondjg4FaWmxGxY3aAUZxOzExkNgpjaM,2454
|
175
|
+
modal-1.0.1.dev4.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
176
|
+
modal-1.0.1.dev4.dist-info/entry_points.txt,sha256=An-wYgeEUnm6xzrAP9_NTSTSciYvvEWsMZILtYrvpAI,46
|
177
|
+
modal-1.0.1.dev4.dist-info/top_level.txt,sha256=4BWzoKYREKUZ5iyPzZpjqx4G8uB5TWxXPDwibLcVa7k,43
|
178
|
+
modal-1.0.1.dev4.dist-info/RECORD,,
|
modal_version/__init__.py
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|