flyte 0.2.0b8__py3-none-any.whl → 0.2.0b10__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 flyte might be problematic. Click here for more details.
- flyte/__init__.py +4 -2
- flyte/_context.py +7 -1
- flyte/_deploy.py +3 -0
- flyte/_group.py +1 -0
- flyte/_initialize.py +15 -5
- flyte/_internal/controllers/__init__.py +13 -2
- flyte/_internal/controllers/_local_controller.py +67 -5
- flyte/_internal/controllers/remote/_controller.py +47 -2
- flyte/_internal/runtime/taskrunner.py +2 -1
- flyte/_map.py +215 -0
- flyte/_run.py +109 -64
- flyte/_task.py +56 -7
- flyte/_utils/helpers.py +15 -0
- flyte/_version.py +2 -2
- flyte/cli/__init__.py +0 -7
- flyte/cli/_abort.py +1 -1
- flyte/cli/_common.py +7 -7
- flyte/cli/_create.py +44 -29
- flyte/cli/_delete.py +2 -2
- flyte/cli/_deploy.py +3 -3
- flyte/cli/_gen.py +12 -4
- flyte/cli/_get.py +35 -27
- flyte/cli/_params.py +1 -1
- flyte/cli/main.py +32 -29
- flyte/extras/_container.py +29 -32
- flyte/io/__init__.py +17 -1
- flyte/io/_file.py +2 -0
- flyte/io/{structured_dataset → _structured_dataset}/basic_dfs.py +1 -1
- flyte/io/{structured_dataset → _structured_dataset}/structured_dataset.py +1 -1
- flyte/models.py +11 -1
- flyte/syncify/_api.py +43 -15
- flyte/types/__init__.py +23 -0
- flyte/{io/pickle/transformer.py → types/_pickle.py} +2 -1
- flyte/types/_type_engine.py +4 -4
- {flyte-0.2.0b8.dist-info → flyte-0.2.0b10.dist-info}/METADATA +7 -6
- {flyte-0.2.0b8.dist-info → flyte-0.2.0b10.dist-info}/RECORD +40 -41
- flyte/io/_dataframe.py +0 -0
- flyte/io/pickle/__init__.py +0 -0
- /flyte/io/{structured_dataset → _structured_dataset}/__init__.py +0 -0
- {flyte-0.2.0b8.dist-info → flyte-0.2.0b10.dist-info}/WHEEL +0 -0
- {flyte-0.2.0b8.dist-info → flyte-0.2.0b10.dist-info}/entry_points.txt +0 -0
- {flyte-0.2.0b8.dist-info → flyte-0.2.0b10.dist-info}/top_level.txt +0 -0
flyte/types/__init__.py
CHANGED
|
@@ -1,9 +1,32 @@
|
|
|
1
|
+
"""
|
|
2
|
+
# Flyte Type System
|
|
3
|
+
|
|
4
|
+
The Flyte type system provides a way to define, transform, and manipulate types in Flyte workflows.
|
|
5
|
+
Since the data flowing through Flyte has to often cross process, container and langauge boundaries, the type system
|
|
6
|
+
is designed to be serializable to a universal format that can be understood across different environments. This
|
|
7
|
+
universal format is based on Protocol Buffers. The types are called LiteralTypes and the runtime
|
|
8
|
+
representation of data is called Literals.
|
|
9
|
+
|
|
10
|
+
The type system includes:
|
|
11
|
+
- **TypeEngine**: The core engine that manages type transformations and serialization. This is the main entry point for
|
|
12
|
+
for all the internal type transformations and serialization logic.
|
|
13
|
+
- **TypeTransformer**: A class that defines how to transform one type to another. This is extensible
|
|
14
|
+
allowing users to define custom types and transformations.
|
|
15
|
+
- **Renderable**: An interface for types that can be rendered as HTML, that can be outputted to a flyte.report.
|
|
16
|
+
|
|
17
|
+
It is always possible to bypass the type system and use the `FlytePickle` type to serialize any python object
|
|
18
|
+
into a pickle format. The pickle format is not human-readable, but can be passed between flyte tasks that are
|
|
19
|
+
written in python. The Pickled objects cannot be represented in the UI, and may be in-efficient for large datasets.
|
|
20
|
+
"""
|
|
21
|
+
|
|
1
22
|
from ._interface import guess_interface
|
|
23
|
+
from ._pickle import FlytePickle
|
|
2
24
|
from ._renderer import Renderable
|
|
3
25
|
from ._string_literals import literal_string_repr
|
|
4
26
|
from ._type_engine import TypeEngine, TypeTransformer, TypeTransformerFailedError
|
|
5
27
|
|
|
6
28
|
__all__ = [
|
|
29
|
+
"FlytePickle",
|
|
7
30
|
"Renderable",
|
|
8
31
|
"TypeEngine",
|
|
9
32
|
"TypeTransformer",
|
flyte/types/_type_engine.py
CHANGED
|
@@ -1008,7 +1008,7 @@ class TypeEngine(typing.Generic[T]):
|
|
|
1008
1008
|
return cls._DATACLASS_TRANSFORMER
|
|
1009
1009
|
|
|
1010
1010
|
display_pickle_warning(str(python_type))
|
|
1011
|
-
from flyte.
|
|
1011
|
+
from flyte.types._pickle import FlytePickleTransformer
|
|
1012
1012
|
|
|
1013
1013
|
return FlytePickleTransformer()
|
|
1014
1014
|
|
|
@@ -1021,7 +1021,7 @@ class TypeEngine(typing.Generic[T]):
|
|
|
1021
1021
|
# Avoid a race condition where concurrent threads may exit lazy_import_transformers before the transformers
|
|
1022
1022
|
# have been imported. This could be implemented without a lock if you assume python assignments are atomic
|
|
1023
1023
|
# and re-registering transformers is acceptable, but I decided to play it safe.
|
|
1024
|
-
from flyte.io
|
|
1024
|
+
from flyte.io import lazy_import_structured_dataset_handler
|
|
1025
1025
|
|
|
1026
1026
|
# todo: bring in extras transformers (pytorch, etc.)
|
|
1027
1027
|
lazy_import_structured_dataset_handler()
|
|
@@ -1657,7 +1657,7 @@ class DictTransformer(TypeTransformer[dict]):
|
|
|
1657
1657
|
Converts a Python dictionary to a Flyte-specific ``Literal`` using MessagePack encoding.
|
|
1658
1658
|
Falls back to Pickle if encoding fails and `allow_pickle` is True.
|
|
1659
1659
|
"""
|
|
1660
|
-
from flyte.
|
|
1660
|
+
from flyte.types._pickle import FlytePickle
|
|
1661
1661
|
|
|
1662
1662
|
try:
|
|
1663
1663
|
# Handle dictionaries with non-string keys (e.g., Dict[int, Type])
|
|
@@ -1763,7 +1763,7 @@ class DictTransformer(TypeTransformer[dict]):
|
|
|
1763
1763
|
# pr: han-ru is this part still necessary?
|
|
1764
1764
|
if lv and lv.HasField("scalar") and lv.scalar.HasField("generic"):
|
|
1765
1765
|
if lv.metadata and lv.metadata.get("format", None) == "pickle":
|
|
1766
|
-
from flyte.
|
|
1766
|
+
from flyte.types._pickle import FlytePickle
|
|
1767
1767
|
|
|
1768
1768
|
uri = json.loads(_json_format.MessageToJson(lv.scalar.generic)).get("pickle_file")
|
|
1769
1769
|
return await FlytePickle.from_pickle(uri)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flyte
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.0b10
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Author-email: Ketan Umare <kumare3@users.noreply.github.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -28,6 +28,8 @@ Requires-Dist: dataclasses_json
|
|
|
28
28
|
|
|
29
29
|
The next-generation SDK for Flyte.
|
|
30
30
|
|
|
31
|
+
[](https://github.com/unionai/unionv2/actions/workflows/publish.yml)
|
|
32
|
+
|
|
31
33
|
## Quickstart
|
|
32
34
|
1. Clone this repo and set `unionv2` to working directory.
|
|
33
35
|
2. Run `uv venv`, and `source .venv/bin/activate` to create a new virtualenv
|
|
@@ -59,7 +61,6 @@ Note that the `--follow` command is optional. Use this to stream updates to the
|
|
|
59
61
|
3. look at examples/... for various examples.
|
|
60
62
|
4. For a single script recommend using uv run scripts with metadata headers.
|
|
61
63
|
|
|
62
|
-
|
|
63
64
|
```python
|
|
64
65
|
import flyte
|
|
65
66
|
|
|
@@ -78,14 +79,14 @@ async def say_hello_nested(data: str) -> str:
|
|
|
78
79
|
|
|
79
80
|
if __name__ == "__main__":
|
|
80
81
|
import asyncio
|
|
81
|
-
|
|
82
|
+
|
|
82
83
|
# to run pure python - the SDK is not invoked at all
|
|
83
84
|
asyncio.run(say_hello_nested("test"))
|
|
84
|
-
|
|
85
|
+
|
|
85
86
|
# To run locally, but run through type system etc
|
|
86
87
|
flyte.init()
|
|
87
88
|
flyte.run(say_hello_nested, "World")
|
|
88
|
-
|
|
89
|
+
|
|
89
90
|
# To run remote
|
|
90
91
|
flyte.init(endpoint="dns:///localhost:8090", insecure=True)
|
|
91
92
|
flyte.run(say_hello_nested, "World")
|
|
@@ -93,7 +94,7 @@ if __name__ == "__main__":
|
|
|
93
94
|
flyte.with_runcontext(mode="local").run(...) # this will run locally only
|
|
94
95
|
|
|
95
96
|
# To run remote with a config
|
|
96
|
-
flyte.
|
|
97
|
+
flyte.init_from_config("config.yaml")
|
|
97
98
|
```
|
|
98
99
|
|
|
99
100
|
# CLI
|
|
@@ -1,29 +1,30 @@
|
|
|
1
|
-
flyte/__init__.py,sha256=
|
|
1
|
+
flyte/__init__.py,sha256=QzKbvypcEAJCF7g8oqpIZhpQfYOsqz6hEvT2OwK0IAc,1415
|
|
2
2
|
flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
|
|
3
|
-
flyte/_context.py,sha256=
|
|
4
|
-
flyte/_deploy.py,sha256=
|
|
3
|
+
flyte/_context.py,sha256=K0-TCt-_pHOoE5Xni87_8uIe2vCBOhfNQEtjGT4Hu4k,5239
|
|
4
|
+
flyte/_deploy.py,sha256=NApDDNQRGauhZP_eBYUnVSQilooSLpmmHQNhqNa5jmk,8034
|
|
5
5
|
flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
|
|
6
6
|
flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
|
|
7
7
|
flyte/_environment.py,sha256=BkChtdVhWB3SwMSvetDZ-KiNBgRFlAXgq69PHT4zyG0,2942
|
|
8
|
-
flyte/_group.py,sha256=
|
|
8
|
+
flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
|
|
9
9
|
flyte/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
|
|
10
10
|
flyte/_image.py,sha256=NeBvjCdwFAVGd666ufi1q-YOvhwdTEzAeJl5YBfl0bI,29043
|
|
11
|
-
flyte/_initialize.py,sha256=
|
|
11
|
+
flyte/_initialize.py,sha256=N7q2n22iHSWmOB86ZLfgMd1En_XU6dz3OusB-t5nUwg,17073
|
|
12
12
|
flyte/_interface.py,sha256=MP5o_qpIwfBNtAc7zo_cLSjMugsPyanuO6EgUSk4fBE,3644
|
|
13
13
|
flyte/_logging.py,sha256=FQvF3W1kkFypbARcOQ7WZVXO0XJasXp8EhozF6E6-aQ,3379
|
|
14
|
+
flyte/_map.py,sha256=efPd8O-JKUg1OY3_MzU3KGbhsGYDVRNBwWr0ceNIXhQ,7444
|
|
14
15
|
flyte/_resources.py,sha256=UOLyEVhdxolvrHhddiBbYdJuE1RkM_l7xeS9G1abe6M,7583
|
|
15
16
|
flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
16
17
|
flyte/_reusable_environment.py,sha256=P4FBATVKAYcIKpdFN98sI8acPyKy8eIGx6V0kUb9YdM,1289
|
|
17
|
-
flyte/_run.py,sha256=
|
|
18
|
+
flyte/_run.py,sha256=ePlFrABDR0ud_qxY55Nk4eATDialHGHsxNdTiVWYQkw,19919
|
|
18
19
|
flyte/_secret.py,sha256=SqIHs6mi8hEkIIBZe3bI9jJsPt65Mt6dV5uh9_op1ME,2392
|
|
19
|
-
flyte/_task.py,sha256=
|
|
20
|
+
flyte/_task.py,sha256=Gq34LbELz5dIc4dvYjgRXyzAnBvs8ED3iU1FWVuAFRE,18391
|
|
20
21
|
flyte/_task_environment.py,sha256=J1LFH9Zz1nPhlsrc_rYny1SS3QC1b55X7tRYoTG7Vk4,6815
|
|
21
22
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
22
23
|
flyte/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
|
|
23
24
|
flyte/_trace.py,sha256=7OQtQNosIlycTwaMjdc3GW4h3T3N0bYTsY6og4clPl8,5234
|
|
24
|
-
flyte/_version.py,sha256=
|
|
25
|
+
flyte/_version.py,sha256=mlXpANdUuYfy0QPXXxhosF8MwMVypx0OlvhibSGO2P8,521
|
|
25
26
|
flyte/errors.py,sha256=m2JUNqLC6anVW6UiDK_ihuA06q_Hkw1mIUMDskb2OW8,4289
|
|
26
|
-
flyte/models.py,sha256=
|
|
27
|
+
flyte/models.py,sha256=A85HnTLqInJiMmQKhpl2IXb2Uh6_46tdRrwW2TTzD9o,12908
|
|
27
28
|
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
29
|
flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
30
|
flyte/_bin/runtime.py,sha256=Q1vajoQ913KUfCQSP0u8Qoj-AYgfvU2i2wI19ydqnDw,4849
|
|
@@ -37,13 +38,13 @@ flyte/_code_bundle/_packaging.py,sha256=_wEozcQTYgqvAAaKQYna9ptvShIMlXk3vEdccwAO
|
|
|
37
38
|
flyte/_code_bundle/_utils.py,sha256=b0s3ZVKSRwaa_2CMTCqt2iRrUvTTW3FmlyqCD9k5BS0,12028
|
|
38
39
|
flyte/_code_bundle/bundle.py,sha256=8T0gcXck6dmg-8L2-0G3B2iNjC-Xwydu806iyKneMMY,8789
|
|
39
40
|
flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
|
|
40
|
-
flyte/_internal/controllers/__init__.py,sha256=
|
|
41
|
-
flyte/_internal/controllers/_local_controller.py,sha256=
|
|
41
|
+
flyte/_internal/controllers/__init__.py,sha256=5CBnS9lb1VFMzZuRXUiaPhlN3G9qh7Aq9kTwxW5hsRw,4301
|
|
42
|
+
flyte/_internal/controllers/_local_controller.py,sha256=LDwVxwm365L6-OEpwo5FcWe6abxK8L1231Hf54pYLZ8,7076
|
|
42
43
|
flyte/_internal/controllers/_trace.py,sha256=Ga2b65sn9q2IoOwHBZV2inMYyO6-CSDwzN7E3pDxsEI,1126
|
|
43
44
|
flyte/_internal/controllers/remote/__init__.py,sha256=9_azH1eHLqY6VULpDugXi7Kf1kK1ODqEnsQ_3wM6IqU,1919
|
|
44
45
|
flyte/_internal/controllers/remote/_action.py,sha256=w6vE1vPz1BwxvwfotDWjTNbDXfGEPrRBA8N3UVQ6P0w,4905
|
|
45
46
|
flyte/_internal/controllers/remote/_client.py,sha256=HPbzbfaWZVv5wpOvKNtFXR6COiZDwd1cUJQqi60A7oU,1421
|
|
46
|
-
flyte/_internal/controllers/remote/_controller.py,sha256=
|
|
47
|
+
flyte/_internal/controllers/remote/_controller.py,sha256=IbCRMTbQrNz96zjSZo2KHDmB0nW3dwT8VlWLu4zElGQ,19462
|
|
47
48
|
flyte/_internal/controllers/remote/_core.py,sha256=2dka1rDnA8Ui_qhfE1ymZuN8E2BYQPn123h_eMixSiM,18091
|
|
48
49
|
flyte/_internal/controllers/remote/_informer.py,sha256=JC35aHbEdwBN7cwDKbQj6koPUypTapYyK0wKxOBRBCo,14191
|
|
49
50
|
flyte/_internal/controllers/remote/_service_protocol.py,sha256=B9qbIg6DiGeac-iSccLmX_AL2xUgX4ezNUOiAbSy4V0,1357
|
|
@@ -61,7 +62,7 @@ flyte/_internal/runtime/entrypoints.py,sha256=Kyi19i7LYk7YM3ZV_Y4FXGt5Pc1tIftGkI
|
|
|
61
62
|
flyte/_internal/runtime/io.py,sha256=Lgdy4iPjlKjUO-V_AkoPZff6lywaFjZUG-PErRukmx4,4248
|
|
62
63
|
flyte/_internal/runtime/resources_serde.py,sha256=tvMMv3l6cZEt_cfs7zVE_Kqs5qh-_r7fsEPxb6xMxMk,4812
|
|
63
64
|
flyte/_internal/runtime/task_serde.py,sha256=985eItmPsnA17CQdRXknjVDBK8wzOx4956AUuVjLsM8,9772
|
|
64
|
-
flyte/_internal/runtime/taskrunner.py,sha256=
|
|
65
|
+
flyte/_internal/runtime/taskrunner.py,sha256=74rnpABxEjqA7ZWxGZ1bXNU3rRT8Ba2utkuKXVpTwY4,7321
|
|
65
66
|
flyte/_internal/runtime/types_serde.py,sha256=EjRh9Yypx9-20XXQprtNgp766LeQVRoYWtY6XPGMZQg,1813
|
|
66
67
|
flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
68
|
flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
|
|
@@ -131,36 +132,33 @@ flyte/_utils/asyn.py,sha256=KeJKarXNIyD16g6oPM0T9cH7JDmh1KY7JLbwo7i0IlQ,3673
|
|
|
131
132
|
flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
|
|
132
133
|
flyte/_utils/coro_management.py,sha256=_JTt9x9fOc_1OSe03DSheYoKOvlonBB_4WNCS9XSaoU,698
|
|
133
134
|
flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
|
|
134
|
-
flyte/_utils/helpers.py,sha256=
|
|
135
|
+
flyte/_utils/helpers.py,sha256=45ZC2OSNKS66DkTvif8W8x7MH4KxluvAyn0a92mKRqM,4366
|
|
135
136
|
flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
|
|
136
137
|
flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
137
|
-
flyte/cli/__init__.py,sha256=
|
|
138
|
-
flyte/cli/_abort.py,sha256=
|
|
139
|
-
flyte/cli/_common.py,sha256=
|
|
140
|
-
flyte/cli/_create.py,sha256=
|
|
141
|
-
flyte/cli/_delete.py,sha256=
|
|
142
|
-
flyte/cli/_deploy.py,sha256=
|
|
143
|
-
flyte/cli/_gen.py,sha256=
|
|
144
|
-
flyte/cli/_get.py,sha256=
|
|
145
|
-
flyte/cli/_params.py,sha256=
|
|
138
|
+
flyte/cli/__init__.py,sha256=M02O-UGqQlA8JJ_jyWRiwQhTNc5CJJ7x9J7fNxTxBT0,52
|
|
139
|
+
flyte/cli/_abort.py,sha256=lTftDmVXEIrFz1XAASCqWbXQEQDqRdTCJqY7izk2USI,593
|
|
140
|
+
flyte/cli/_common.py,sha256=dwZ5OPz3x8-8uVtMiV1HpqA1MaoBJZH8yBON-axFSZs,10795
|
|
141
|
+
flyte/cli/_create.py,sha256=DFdNemGqNVdlgDxcIqMmZJBF1zPtAHeWO1XeT2caEPs,4087
|
|
142
|
+
flyte/cli/_delete.py,sha256=qq5A9d6vXdYvYz-SECXiC6LU5rAzahNTZKiKacOtcZ4,545
|
|
143
|
+
flyte/cli/_deploy.py,sha256=owGe_RVwC73p3dOPWYSo442OVuZyagF8LKTvC57xubQ,4466
|
|
144
|
+
flyte/cli/_gen.py,sha256=vlE5l8UR1zz4RSdaRyUfYFvGR0TLxGcTYcP4dhA3Pvg,5458
|
|
145
|
+
flyte/cli/_get.py,sha256=Pl9nHVHzRQT8IG3k_VAMJ2Xvaq9URsovm96op_153os,9843
|
|
146
|
+
flyte/cli/_params.py,sha256=fs6fNBRGYXZMmjjcySi3U1O_pQNgCnW9ko89KCcS6nU,19450
|
|
146
147
|
flyte/cli/_run.py,sha256=zRu4DTO__BVsLgpSLUbYR1Twvzc_2zivUhcviymCRf0,7884
|
|
147
|
-
flyte/cli/main.py,sha256=
|
|
148
|
+
flyte/cli/main.py,sha256=PJUQ6slm1CcwIfeP6pbJKlPuyOqXxb_K8PjnZb8sbhw,4450
|
|
148
149
|
flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
|
|
149
150
|
flyte/config/_config.py,sha256=QE3T0W8xOULjJaqDMdMF90f9gFVjGR6h8QPOLsyqjYw,9831
|
|
150
151
|
flyte/config/_internal.py,sha256=Bj0uzn3PYgxKbzM-q2GKXxp7Y6cyzhPzUB-Y2i6cQKo,2836
|
|
151
152
|
flyte/config/_reader.py,sha256=c16jm0_IYxwEAjXENtllLeO_sT5Eg2RNLG4UjnAv_x4,7157
|
|
152
153
|
flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
154
|
flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
|
|
154
|
-
flyte/extras/_container.py,sha256=
|
|
155
|
-
flyte/io/__init__.py,sha256=
|
|
156
|
-
flyte/io/_dataframe.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
+
flyte/extras/_container.py,sha256=kMrYPmfnDFxPmFhI9cZeoBKzQ96jMCO4l4FpwV1b0PA,11202
|
|
156
|
+
flyte/io/__init__.py,sha256=F7hlpin_1JJjsdFZSn7_jQgltPzsjETX1DCYGz-ELqI,629
|
|
157
157
|
flyte/io/_dir.py,sha256=rih9CY1YjNX05bcAu5LG62Xoyij5GXAlv7jLyVF0je8,15310
|
|
158
|
-
flyte/io/_file.py,sha256=
|
|
159
|
-
flyte/io/
|
|
160
|
-
flyte/io/
|
|
161
|
-
flyte/io/structured_dataset
|
|
162
|
-
flyte/io/structured_dataset/basic_dfs.py,sha256=lrcALNYke_gSmmAhIiUN5afqhA-W5bSuKJUCoW6S4CE,8223
|
|
163
|
-
flyte/io/structured_dataset/structured_dataset.py,sha256=DrRIHA3zbkfLBekw3pPTF_SM0Rbn_BGBp1YJPyd9zY0,52644
|
|
158
|
+
flyte/io/_file.py,sha256=kp5700SKPy5htmMhm4hE2ybb99Ykny1b0Kwm3huCWXs,15572
|
|
159
|
+
flyte/io/_structured_dataset/__init__.py,sha256=69ixVV9OEXiLiQ6SV2S8tEC7dVQe7YTt9NV1OotlG64,4524
|
|
160
|
+
flyte/io/_structured_dataset/basic_dfs.py,sha256=77aYFrFigPC7cjM6UjCbU26REtXmwIBBapFN6KGYOO8,8224
|
|
161
|
+
flyte/io/_structured_dataset/structured_dataset.py,sha256=ddRjz36RhNxIy0gakzdLStBzoo4cAOgXbNqiqt5YhMI,52645
|
|
164
162
|
flyte/remote/__init__.py,sha256=zBWV88VF-L8430xVrOyk07EmLsOKhOUMVBsqFUDtO6Q,565
|
|
165
163
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
166
164
|
flyte/remote/_data.py,sha256=DPK85gB6M71RjxqIh1Q5PdZ9xcJ0m1w_3cT2lAO0r7w,5795
|
|
@@ -199,15 +197,16 @@ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1
|
|
|
199
197
|
flyte/storage/_storage.py,sha256=mBy7MKII2M1UTVm_EUUDwVb7uT1_AOPzQr2wCJ-fgW0,9873
|
|
200
198
|
flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
|
|
201
199
|
flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
|
|
202
|
-
flyte/syncify/_api.py,sha256=
|
|
203
|
-
flyte/types/__init__.py,sha256=
|
|
200
|
+
flyte/syncify/_api.py,sha256=x37A7OtUS0WVUB1wkoN0i5iu6HQPDYlPc1uwzVFOrfM,10927
|
|
201
|
+
flyte/types/__init__.py,sha256=9310PRtVrwJePwEPeoUO0HPyIkgaja7-Dar_QlE_MUI,1745
|
|
204
202
|
flyte/types/_interface.py,sha256=mY7mb8v2hJPGk7AU99gdOWl4_jArA1VFtjYGlE31SK0,953
|
|
203
|
+
flyte/types/_pickle.py,sha256=PjdR66OTDMZ3OYq6GvM_Ua0cIo5t2XQaIjmpJ9xo4Ys,4050
|
|
205
204
|
flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
206
205
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
207
|
-
flyte/types/_type_engine.py,sha256=
|
|
206
|
+
flyte/types/_type_engine.py,sha256=3PiRPYtE0UmEpTfwwcFWaiVmG1XOfXQl3Pj4v2zClNk,93602
|
|
208
207
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
209
|
-
flyte-0.2.
|
|
210
|
-
flyte-0.2.
|
|
211
|
-
flyte-0.2.
|
|
212
|
-
flyte-0.2.
|
|
213
|
-
flyte-0.2.
|
|
208
|
+
flyte-0.2.0b10.dist-info/METADATA,sha256=XALFwwiy3iCSCTVj80DPGhfL8gfPIVUOsyAMmbpNzac,4811
|
|
209
|
+
flyte-0.2.0b10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
210
|
+
flyte-0.2.0b10.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
211
|
+
flyte-0.2.0b10.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
212
|
+
flyte-0.2.0b10.dist-info/RECORD,,
|
flyte/io/_dataframe.py
DELETED
|
File without changes
|
flyte/io/pickle/__init__.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|