flyte 0.0.1b1__py3-none-any.whl → 0.0.1b3__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.

Files changed (210) hide show
  1. flyte/_cli/_common.py +0 -12
  2. flyte/_cli/_run.py +2 -24
  3. flyte/_cli/main.py +2 -28
  4. flyte/_image.py +8 -11
  5. flyte/_initialize.py +15 -24
  6. flyte/_internal/imagebuild/docker_builder.py +2 -2
  7. flyte/_internal/runtime/convert.py +0 -6
  8. flyte/_run.py +1 -0
  9. flyte/_version.py +2 -2
  10. flyte/remote/_console.py +1 -1
  11. flyte/types/_type_engine.py +3 -4
  12. {flyte-0.0.1b1.dist-info → flyte-0.0.1b3.dist-info}/METADATA +1 -1
  13. flyte-0.0.1b3.dist-info/RECORD +390 -0
  14. union/__init__.py +54 -0
  15. union/_api_commons.py +3 -0
  16. union/_bin/__init__.py +0 -0
  17. union/_bin/runtime.py +113 -0
  18. union/_build.py +25 -0
  19. union/_cache/__init__.py +12 -0
  20. union/_cache/cache.py +141 -0
  21. union/_cache/defaults.py +9 -0
  22. union/_cache/policy_function_body.py +42 -0
  23. union/_cli/__init__.py +0 -0
  24. union/_cli/_common.py +263 -0
  25. union/_cli/_create.py +40 -0
  26. union/_cli/_delete.py +23 -0
  27. union/_cli/_deploy.py +120 -0
  28. union/_cli/_get.py +162 -0
  29. {flyte → union}/_cli/_params.py +147 -106
  30. union/_cli/_run.py +150 -0
  31. union/_cli/main.py +72 -0
  32. union/_code_bundle/__init__.py +8 -0
  33. union/_code_bundle/_ignore.py +113 -0
  34. union/_code_bundle/_packaging.py +187 -0
  35. union/_code_bundle/_utils.py +342 -0
  36. union/_code_bundle/bundle.py +176 -0
  37. union/_context.py +146 -0
  38. union/_datastructures.py +295 -0
  39. union/_deploy.py +185 -0
  40. union/_doc.py +29 -0
  41. union/_docstring.py +26 -0
  42. union/_environment.py +43 -0
  43. union/_group.py +31 -0
  44. union/_hash.py +23 -0
  45. union/_image.py +760 -0
  46. union/_initialize.py +585 -0
  47. union/_interface.py +84 -0
  48. union/_internal/__init__.py +3 -0
  49. union/_internal/controllers/__init__.py +77 -0
  50. union/_internal/controllers/_local_controller.py +77 -0
  51. union/_internal/controllers/pbhash.py +39 -0
  52. union/_internal/controllers/remote/__init__.py +40 -0
  53. union/_internal/controllers/remote/_action.py +131 -0
  54. union/_internal/controllers/remote/_client.py +43 -0
  55. union/_internal/controllers/remote/_controller.py +169 -0
  56. union/_internal/controllers/remote/_core.py +341 -0
  57. union/_internal/controllers/remote/_informer.py +260 -0
  58. union/_internal/controllers/remote/_service_protocol.py +44 -0
  59. union/_internal/imagebuild/__init__.py +11 -0
  60. union/_internal/imagebuild/docker_builder.py +416 -0
  61. union/_internal/imagebuild/image_builder.py +243 -0
  62. union/_internal/imagebuild/remote_builder.py +0 -0
  63. union/_internal/resolvers/__init__.py +0 -0
  64. union/_internal/resolvers/_task_module.py +31 -0
  65. union/_internal/resolvers/common.py +24 -0
  66. union/_internal/resolvers/default.py +27 -0
  67. union/_internal/runtime/__init__.py +0 -0
  68. union/_internal/runtime/convert.py +163 -0
  69. union/_internal/runtime/entrypoints.py +121 -0
  70. union/_internal/runtime/io.py +136 -0
  71. union/_internal/runtime/resources_serde.py +134 -0
  72. union/_internal/runtime/task_serde.py +202 -0
  73. union/_internal/runtime/taskrunner.py +179 -0
  74. union/_internal/runtime/types_serde.py +53 -0
  75. union/_logging.py +124 -0
  76. union/_protos/__init__.py +0 -0
  77. union/_protos/common/authorization_pb2.py +66 -0
  78. union/_protos/common/authorization_pb2.pyi +106 -0
  79. union/_protos/common/authorization_pb2_grpc.py +4 -0
  80. union/_protos/common/identifier_pb2.py +71 -0
  81. union/_protos/common/identifier_pb2.pyi +82 -0
  82. union/_protos/common/identifier_pb2_grpc.py +4 -0
  83. union/_protos/common/identity_pb2.py +48 -0
  84. union/_protos/common/identity_pb2.pyi +72 -0
  85. union/_protos/common/identity_pb2_grpc.py +4 -0
  86. union/_protos/common/list_pb2.py +36 -0
  87. union/_protos/common/list_pb2.pyi +69 -0
  88. union/_protos/common/list_pb2_grpc.py +4 -0
  89. union/_protos/common/policy_pb2.py +37 -0
  90. union/_protos/common/policy_pb2.pyi +27 -0
  91. union/_protos/common/policy_pb2_grpc.py +4 -0
  92. union/_protos/common/role_pb2.py +37 -0
  93. union/_protos/common/role_pb2.pyi +51 -0
  94. union/_protos/common/role_pb2_grpc.py +4 -0
  95. union/_protos/common/runtime_version_pb2.py +28 -0
  96. union/_protos/common/runtime_version_pb2.pyi +24 -0
  97. union/_protos/common/runtime_version_pb2_grpc.py +4 -0
  98. union/_protos/logs/dataplane/payload_pb2.py +96 -0
  99. union/_protos/logs/dataplane/payload_pb2.pyi +168 -0
  100. union/_protos/logs/dataplane/payload_pb2_grpc.py +4 -0
  101. union/_protos/secret/definition_pb2.py +49 -0
  102. union/_protos/secret/definition_pb2.pyi +93 -0
  103. union/_protos/secret/definition_pb2_grpc.py +4 -0
  104. union/_protos/secret/payload_pb2.py +62 -0
  105. union/_protos/secret/payload_pb2.pyi +94 -0
  106. union/_protos/secret/payload_pb2_grpc.py +4 -0
  107. union/_protos/secret/secret_pb2.py +38 -0
  108. union/_protos/secret/secret_pb2.pyi +6 -0
  109. union/_protos/secret/secret_pb2_grpc.py +198 -0
  110. union/_protos/validate/validate/validate_pb2.py +76 -0
  111. union/_protos/workflow/node_execution_service_pb2.py +26 -0
  112. union/_protos/workflow/node_execution_service_pb2.pyi +4 -0
  113. union/_protos/workflow/node_execution_service_pb2_grpc.py +32 -0
  114. union/_protos/workflow/queue_service_pb2.py +75 -0
  115. union/_protos/workflow/queue_service_pb2.pyi +103 -0
  116. union/_protos/workflow/queue_service_pb2_grpc.py +172 -0
  117. union/_protos/workflow/run_definition_pb2.py +100 -0
  118. union/_protos/workflow/run_definition_pb2.pyi +256 -0
  119. union/_protos/workflow/run_definition_pb2_grpc.py +4 -0
  120. union/_protos/workflow/run_logs_service_pb2.py +41 -0
  121. union/_protos/workflow/run_logs_service_pb2.pyi +28 -0
  122. union/_protos/workflow/run_logs_service_pb2_grpc.py +69 -0
  123. union/_protos/workflow/run_service_pb2.py +133 -0
  124. union/_protos/workflow/run_service_pb2.pyi +173 -0
  125. union/_protos/workflow/run_service_pb2_grpc.py +412 -0
  126. union/_protos/workflow/state_service_pb2.py +58 -0
  127. union/_protos/workflow/state_service_pb2.pyi +69 -0
  128. union/_protos/workflow/state_service_pb2_grpc.py +138 -0
  129. union/_protos/workflow/task_definition_pb2.py +72 -0
  130. union/_protos/workflow/task_definition_pb2.pyi +65 -0
  131. union/_protos/workflow/task_definition_pb2_grpc.py +4 -0
  132. union/_protos/workflow/task_service_pb2.py +44 -0
  133. union/_protos/workflow/task_service_pb2.pyi +31 -0
  134. union/_protos/workflow/task_service_pb2_grpc.py +104 -0
  135. union/_resources.py +226 -0
  136. union/_retry.py +32 -0
  137. union/_reusable_environment.py +25 -0
  138. union/_run.py +374 -0
  139. union/_secret.py +61 -0
  140. union/_task.py +354 -0
  141. union/_task_environment.py +186 -0
  142. union/_timeout.py +47 -0
  143. union/_tools.py +27 -0
  144. union/_utils/__init__.py +11 -0
  145. union/_utils/asyn.py +119 -0
  146. union/_utils/file_handling.py +71 -0
  147. union/_utils/helpers.py +46 -0
  148. union/_utils/lazy_module.py +54 -0
  149. union/_utils/uv_script_parser.py +49 -0
  150. union/_version.py +21 -0
  151. union/connectors/__init__.py +0 -0
  152. union/errors.py +128 -0
  153. union/extras/__init__.py +5 -0
  154. union/extras/_container.py +263 -0
  155. union/io/__init__.py +11 -0
  156. union/io/_dataframe.py +0 -0
  157. union/io/_dir.py +425 -0
  158. union/io/_file.py +418 -0
  159. union/io/pickle/__init__.py +0 -0
  160. union/io/pickle/transformer.py +117 -0
  161. union/io/structured_dataset/__init__.py +122 -0
  162. union/io/structured_dataset/basic_dfs.py +219 -0
  163. union/io/structured_dataset/structured_dataset.py +1057 -0
  164. union/py.typed +0 -0
  165. union/remote/__init__.py +23 -0
  166. union/remote/_client/__init__.py +0 -0
  167. union/remote/_client/_protocols.py +129 -0
  168. union/remote/_client/auth/__init__.py +12 -0
  169. union/remote/_client/auth/_authenticators/__init__.py +0 -0
  170. union/remote/_client/auth/_authenticators/base.py +391 -0
  171. union/remote/_client/auth/_authenticators/client_credentials.py +73 -0
  172. union/remote/_client/auth/_authenticators/device_code.py +120 -0
  173. union/remote/_client/auth/_authenticators/external_command.py +77 -0
  174. union/remote/_client/auth/_authenticators/factory.py +200 -0
  175. union/remote/_client/auth/_authenticators/pkce.py +515 -0
  176. union/remote/_client/auth/_channel.py +184 -0
  177. union/remote/_client/auth/_client_config.py +83 -0
  178. union/remote/_client/auth/_default_html.py +32 -0
  179. union/remote/_client/auth/_grpc_utils/__init__.py +0 -0
  180. union/remote/_client/auth/_grpc_utils/auth_interceptor.py +204 -0
  181. union/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py +144 -0
  182. union/remote/_client/auth/_keyring.py +154 -0
  183. union/remote/_client/auth/_token_client.py +258 -0
  184. union/remote/_client/auth/errors.py +16 -0
  185. union/remote/_client/controlplane.py +86 -0
  186. union/remote/_data.py +149 -0
  187. union/remote/_logs.py +74 -0
  188. union/remote/_project.py +86 -0
  189. union/remote/_run.py +820 -0
  190. union/remote/_secret.py +132 -0
  191. union/remote/_task.py +193 -0
  192. union/report/__init__.py +3 -0
  193. union/report/_report.py +178 -0
  194. union/report/_template.html +124 -0
  195. union/storage/__init__.py +24 -0
  196. union/storage/_remote_fs.py +34 -0
  197. union/storage/_storage.py +247 -0
  198. union/storage/_utils.py +5 -0
  199. union/types/__init__.py +11 -0
  200. union/types/_renderer.py +162 -0
  201. union/types/_string_literals.py +120 -0
  202. union/types/_type_engine.py +2131 -0
  203. union/types/_utils.py +80 -0
  204. flyte/config/__init__.py +0 -168
  205. flyte/config/_config.py +0 -196
  206. flyte/config/_internal.py +0 -64
  207. flyte-0.0.1b1.dist-info/RECORD +0 -204
  208. {flyte-0.0.1b1.dist-info → flyte-0.0.1b3.dist-info}/WHEEL +0 -0
  209. {flyte-0.0.1b1.dist-info → flyte-0.0.1b3.dist-info}/entry_points.txt +0 -0
  210. {flyte-0.0.1b1.dist-info → flyte-0.0.1b3.dist-info}/top_level.txt +0 -0
@@ -1,204 +0,0 @@
1
- flyte/__init__.py,sha256=klTe7_6xJK-7Aaozj2gmCulji6vCY1fET5h6pdn0chA,1331
2
- flyte/_api_commons.py,sha256=9drgP2Qgr8rdDmZlI31TEpa056zCBiI1tAMO001SQ8o,64
3
- flyte/_build.py,sha256=MVBM-i2rCxHhIFQCR-Tc0JMA2XuJ5r4UZBW4M7HRvSw,580
4
- flyte/_context.py,sha256=OSMuyrAahRYPXci5Bgi5plhnhd2nPTcNJqlHtwkJOAE,5004
5
- flyte/_datastructures.py,sha256=YQWNJpXrRhZSiYA4x5tRcOl4SGBynD6J6QUV7fj4L_o,12554
6
- flyte/_deploy.py,sha256=hSk9kDfIyM0fDxh145RD1wMP6RskHikx3AzDFKBz3c4,7663
7
- flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
8
- flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
9
- flyte/_environment.py,sha256=ft0EsyFg6OnoIFPFbwkABLcq676veIH3TTR4SNilrj8,1499
10
- flyte/_group.py,sha256=YmkTWJlO39wrrcOeNV3QUQUriNRwtdMFE_r8sXLLpSI,752
11
- flyte/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
12
- flyte/_image.py,sha256=0md7iNMgMyC0mBjpq_pluxerIgebVwXMqXTNZd9P5I8,29158
13
- flyte/_initialize.py,sha256=B5QxKwsKvPkWhIMk965LXIMmcAmF35cMjfxWoTTB-dk,23317
14
- flyte/_interface.py,sha256=MP5o_qpIwfBNtAc7zo_cLSjMugsPyanuO6EgUSk4fBE,3644
15
- flyte/_logging.py,sha256=FQvF3W1kkFypbARcOQ7WZVXO0XJasXp8EhozF6E6-aQ,3379
16
- flyte/_resources.py,sha256=UOLyEVhdxolvrHhddiBbYdJuE1RkM_l7xeS9G1abe6M,7583
17
- flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
18
- flyte/_reusable_environment.py,sha256=P4FBATVKAYcIKpdFN98sI8acPyKy8eIGx6V0kUb9YdM,1289
19
- flyte/_run.py,sha256=3gdMFc6TJ7xtGhTfh9Y7hHX755JFWOKoyz-x0P0pftY,16825
20
- flyte/_secret.py,sha256=SqIHs6mi8hEkIIBZe3bI9jJsPt65Mt6dV5uh9_op1ME,2392
21
- flyte/_task.py,sha256=jGlnLmbHu7JXZlXvqQ-Sn9pw5ypBsm0Qcd9o7xvcPxk,14637
22
- flyte/_task_environment.py,sha256=1JSHkCvS-Ereh389mu1Z2eNIqsTXQGV-ZLiiqW09RnY,8412
23
- flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
24
- flyte/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
25
- flyte/_trace.py,sha256=jWJqmIntfubetcS4S705tIyoGR4jnXaPgS3JuK4gkuo,5502
26
- flyte/_version.py,sha256=vgLAFiiOtv-NHQwUxQRVhK07vuyH10Ouu4wDza_vJjM,519
27
- flyte/errors.py,sha256=ulVzQ3TncddYOqQ3gvauDJAHTShWTpY0XZpqNqBZyOY,4036
28
- flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- flyte/_bin/runtime.py,sha256=1-69O3yI4LEWsRn_JCy8vlCmpZ7kMvcNIbkEFgUca8g,4327
31
- flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
32
- flyte/_cache/cache.py,sha256=3DL8E_WnLCzavE7DSIqc49nOJyKCVQr-LWZQmz6MwlY,5031
33
- flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
34
- flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
35
- flyte/_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- flyte/_cli/_common.py,sha256=oKk1mYe04liluwqASP50vz_z7cUPhyGA6LWjXXaCD3A,9036
37
- flyte/_cli/_create.py,sha256=2fFUvujm_GXPup3-CNHvHwxXySnAk4DPlAJiS8eyqw4,1116
38
- flyte/_cli/_delete.py,sha256=MVxMKIgQC3R-EKDEYSySCqHTLHhQrhjwo4sdv5TynEA,498
39
- flyte/_cli/_deploy.py,sha256=QZmvYKWYHv7AZn4wmhSKf2oA2ss5b4K11AbM3Edhl28,4319
40
- flyte/_cli/_get.py,sha256=XhBeNqwb2g0EFKfN_b-XecYMojIVNNCaBZ0J_jL6jFQ,6772
41
- flyte/_cli/_params.py,sha256=X3GpuftXmtfIsYQ7vBilD4kmlkXTc7_AxpaxohRjSuY,19458
42
- flyte/_cli/_run.py,sha256=UR8Ce1XlaGSrRNUnBe36YfXIeXWB5Ji7rCdIPo74jnQ,5740
43
- flyte/_cli/main.py,sha256=c6jELEuO8OLWbjS2DsEfoRI8H3q5bbIMXm1hADTCLDU,2214
44
- flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
45
- flyte/_code_bundle/_ignore.py,sha256=Tfaoa62CQVTH17kBHD6Xv6xEh1FhcAyvXivl9m-MEE0,3853
46
- flyte/_code_bundle/_packaging.py,sha256=_wEozcQTYgqvAAaKQYna9ptvShIMlXk3vEdccwAOYn8,6873
47
- flyte/_code_bundle/_utils.py,sha256=jdGsKLN12gdjqWq8ZGXeLPGQ6InhrK4iY9UB-IGDTo0,12583
48
- flyte/_code_bundle/bundle.py,sha256=2JGVTio1M_t-quugVN-R8VHSqOPnYuxHYpEpQlGy6e0,7670
49
- flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
50
- flyte/_internal/controllers/__init__.py,sha256=MshnWe5I28u6EF6TJ8Ij0NTvzuQBcOZW8Gp9bF-dMyo,3767
51
- flyte/_internal/controllers/_local_controller.py,sha256=8oAVeFTFdEUX7yFTkNELT0LhpMZp-j8NGSq7gTn6W30,4442
52
- flyte/_internal/controllers/_trace.py,sha256=-ajP0FnotKCqjP0QQVrDu81boWNsnu3ZHNLhBKLssGg,1135
53
- flyte/_internal/controllers/pbhash.py,sha256=gGDJWxSaXqOv3U3zdBv7Lx6Euudo2I2baamiItuoqrM,1372
54
- flyte/_internal/controllers/remote/__init__.py,sha256=op1CMiqVWef6KyUj61bnNr4rV_2RPmKJbvDw-UYgFtQ,1176
55
- flyte/_internal/controllers/remote/_action.py,sha256=FZL7itHqlAjbASE0aevuL-fWMj38K7RHeuNMK2ZgvOc,4914
56
- flyte/_internal/controllers/remote/_client.py,sha256=vfv-RaIEFuu6emU_ORjtClCF3JfMIbCtrZAFkQdv6J4,1212
57
- flyte/_internal/controllers/remote/_controller.py,sha256=Hmy6hFsTRDoZEx3GaRpEZt8dEnpG3owZ9bSwZgxsB08,15344
58
- flyte/_internal/controllers/remote/_core.py,sha256=NRPfL7PO8UKywr4lyBqSeplqWJpXHVTeKVeWFrdBTVw,18000
59
- flyte/_internal/controllers/remote/_informer.py,sha256=6WPaT1EmDcIwQ3VlujGWICzHy-kaGhMut_zBh2ShZnE,14186
60
- flyte/_internal/controllers/remote/_service_protocol.py,sha256=-p5FXdo5pp5xmr9fJ0sGB9aE7mimeC6x13bqwyIR77k,1345
61
- flyte/_internal/imagebuild/__init__.py,sha256=cLXVxkAyFpbdC1y-k3Rb6FRW9f_xpoRQWVn__G9IqKs,354
62
- flyte/_internal/imagebuild/docker_builder.py,sha256=xkfs22WGskEAzxmyEc-ZJ4m5ogLGBCSJoxdWXoHC2tU,13948
63
- flyte/_internal/imagebuild/image_builder.py,sha256=q-TRcF_t2nS8FqBOtIIdnSo1Jrq378jqzceYDPzne8Q,9902
64
- flyte/_internal/imagebuild/remote_builder.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
- flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3Ck3mTlTsm66UI,1973
67
- flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
68
- flyte/_internal/resolvers/default.py,sha256=nX4DHUYod1nRvEsl_vSgutQVEdExu2xL8pRkyi4VWbY,981
69
- flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- flyte/_internal/runtime/convert.py,sha256=ruWCOiTozsUB79IWJa7nZUgnccaXbRDATQLD6Tle160,8054
71
- flyte/_internal/runtime/entrypoints.py,sha256=l_VtUsPd0YqQoN2_POFyOw7c9YJFQnUWIOPSWaLWZZ0,5136
72
- flyte/_internal/runtime/io.py,sha256=b9loNxDkohLorSaoiSnp2z7jDpt8Ivn05po-rP7Xnio,4241
73
- flyte/_internal/runtime/resources_serde.py,sha256=tvMMv3l6cZEt_cfs7zVE_Kqs5qh-_r7fsEPxb6xMxMk,4812
74
- flyte/_internal/runtime/task_serde.py,sha256=NKuVoKAFu94wDKat1kByHC8-ISAUCxE1U92cXkKvTxE,8358
75
- flyte/_internal/runtime/taskrunner.py,sha256=zcSQjpDQ7v4pt4uMCMnjf75Gu_krQKsQkP4gBVWcBsw,7252
76
- flyte/_internal/runtime/types_serde.py,sha256=dOeuSZ1xcYRHg-fyIkPvjFyCtKWisg7guHU-DoKztU8,1822
77
- flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
- flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
79
- flyte/_protos/common/authorization_pb2.pyi,sha256=tdqc3wZo3Yc6lKfjVgJlUFUFzGv4GAaCknIv43RGd-8,4759
80
- flyte/_protos/common/authorization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
81
- flyte/_protos/common/identifier_pb2.py,sha256=Stfe32AVvRe9G5fazu63_qQlbVPOiQQ5Prn138EqCvE,6379
82
- flyte/_protos/common/identifier_pb2.pyi,sha256=liHxsjjUE1QxXvOPr1s27S0agU8ohT1tHSJ5c1KmJYA,3132
83
- flyte/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
84
- flyte/_protos/common/identity_pb2.py,sha256=Q3UHzjnYkgHPjBC001DSRSVd5IbiarijpWpUt-GSWAo,4581
85
- flyte/_protos/common/identity_pb2.pyi,sha256=gjcp8lg-XIBP4ZzFBI8-Uf8DofAkheZlZLG5Cj3m4-g,3720
86
- flyte/_protos/common/identity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
87
- flyte/_protos/common/list_pb2.py,sha256=OOhJJ4cKHuhpBsbUkCrAOc6ZJjJabAcTNkgoYcuFRx4,3223
88
- flyte/_protos/common/list_pb2.pyi,sha256=s7j9QPVHN5sMhAqGzsWCI1Q7Gyo9HxsFmzo38KiwPPU,3289
89
- flyte/_protos/common/list_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
90
- flyte/_protos/common/policy_pb2.py,sha256=NceBASAzGQVU0A-WKSViDndQ_3cEGbDA3vXg8Lf-g0s,2966
91
- flyte/_protos/common/policy_pb2.pyi,sha256=LCHthmNrqlRI-rrAB7D4gMrH-OnlrCGymquNGN6vO9Q,1535
92
- flyte/_protos/common/policy_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
93
- flyte/_protos/common/role_pb2.py,sha256=_Ve6LHrjS617n4Wa36LYVo_vvxlL_fbqbi891XQ44FA,3301
94
- flyte/_protos/common/role_pb2.pyi,sha256=wVl1Q4x5hhdJ3s12hxqnA6J6tLbg6VXBWKLz8CZOjZY,2661
95
- flyte/_protos/common/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
96
- flyte/_protos/common/runtime_version_pb2.py,sha256=djTmB3fRv2V0IV6Jzz4mtmHvEuEK4KPCkJWdRcW3DUQ,2012
97
- flyte/_protos/common/runtime_version_pb2.pyi,sha256=pPQ9qVtfvE1sGhdZo47aThk2quLtXOOywRhYXFp-Kzg,1132
98
- flyte/_protos/common/runtime_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
99
- flyte/_protos/logs/dataplane/payload_pb2.py,sha256=ni5wgcOTYaqCPz4BgYzruJ6eOC_h0xYJ_m4MXspEmyQ,11549
100
- flyte/_protos/logs/dataplane/payload_pb2.pyi,sha256=AVk0TgCJ0hRHjGuwdgAWMyj7125ch353jg2GcNCNzfY,9208
101
- flyte/_protos/logs/dataplane/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
102
- flyte/_protos/secret/definition_pb2.py,sha256=OCV8zbPz9nxKJM215_3J4sbT0YVx5z_p6vCoYNHFZo4,4904
103
- flyte/_protos/secret/definition_pb2.pyi,sha256=EQPG_os98mnRT3Hfn3kHHgI-ZYrIV6ZUmo2PgY4vAFM,4412
104
- flyte/_protos/secret/definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
105
- flyte/_protos/secret/payload_pb2.py,sha256=O0ryqbUf6UG08r7MVfpReXeIFxg6334PSw75hjwBFwA,5918
106
- flyte/_protos/secret/payload_pb2.pyi,sha256=0rxXcrbekexC2MrbvwPLZNf33EjPSaRKt2nXcpSaoxM,4386
107
- flyte/_protos/secret/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
108
- flyte/_protos/secret/secret_pb2.py,sha256=Zcvxs6pRv8H0_amjLjd5i_pxYhQRPFy4Vs-WsC9zRG8,3554
109
- flyte/_protos/secret/secret_pb2.pyi,sha256=gQ2SbW8J93TB2i4c7FjsrJdj38rlhLmdY1T3kOomJgA,255
110
- flyte/_protos/secret/secret_pb2_grpc.py,sha256=3DOSlIwXhKUn_Kvsv3V6Hmnge1NgtZUI2V_wYOl3aak,9085
111
- flyte/_protos/secret/secret_pb2_grpc_grpc.py,sha256=3DOSlIwXhKUn_Kvsv3V6Hmnge1NgtZUI2V_wYOl3aak,9085
112
- flyte/_protos/validate/validate/validate_pb2.py,sha256=yJOyUdZVPAVOSvo8uNgynvObiS-fQFYJE97KilJnLZA,13409
113
- flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
114
- flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
115
- flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
116
- flyte/_protos/workflow/queue_service_pb2.py,sha256=jR1AEczpIWtM_UGiOYIiBKzJgRXCSveDFp7kIfLjiuw,12160
117
- flyte/_protos/workflow/queue_service_pb2.pyi,sha256=6ShNYyrUZuwSWOlBrhT4vjkgEfqiyT67dYbnX5TUtnw,7673
118
- flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=TnK6wx8LTOCl2UrCA4_RxCU163vxFIfsfvGiEOv8N6E,7881
119
- flyte/_protos/workflow/run_definition_pb2.py,sha256=fpQ5VYWAlOFN4cnH4BRh64xpXHUed8r4NgQr5OlZ27c,16019
120
- flyte/_protos/workflow/run_definition_pb2.pyi,sha256=toTdsCzHF2aIei6d_r0bwEUkUpMy1u0c9pMsBfL-wfY,15140
121
- flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
122
- flyte/_protos/workflow/run_logs_service_pb2.py,sha256=MKG9keauunf7EmIrlthQKgXrQAfMjbX9LyeBMlLhK30,3358
123
- flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=88_Qp-qQh9PSUUPSsyuawc9gBi9_4OEbnp37cgH1VGE,1534
124
- flyte/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=xoNyNBaK9dmrjZtiYkZQSQnSLNY7d2CK9pr5BTP7zxQ,2694
125
- flyte/_protos/workflow/run_service_pb2.py,sha256=KDVyv2EO14XExFNGib2Y0Q7G8DrP3K2GQbj_-puuk0Y,15458
126
- flyte/_protos/workflow/run_service_pb2.pyi,sha256=Wr5QPywY34crvcOJWVFImd9Q2FfSGkGIbbh4BMWkxUo,9417
127
- flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=tO1qnrD5_0KrtToCIcuseVhkQNdNIQ2yfZHCzysV5sY,19657
128
- flyte/_protos/workflow/state_service_pb2.py,sha256=xDEak38Egukk2yR4kr7Y7y-SsL4Y1rCnPN-FiGmmYsM,5785
129
- flyte/_protos/workflow/state_service_pb2.pyi,sha256=S3oEFSPHem-t7ySb2UGcWjmf-QK7gFG2rNCWAiIwzGk,3545
130
- flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=E5yH8ZHNWUBFJkvsvqgX7ZmVU45UmbaHZynHGcQUd70,5801
131
- flyte/_protos/workflow/task_definition_pb2.py,sha256=x-q44ATxHCswazGEHUbWfpvsl4UoMcs49FvZBx4v58M,6567
132
- flyte/_protos/workflow/task_definition_pb2.pyi,sha256=sw1JLQR7Rz1PUogtbPlp4VPGkNZeOmc_aNAqlZdPIFA,2917
133
- flyte/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
134
- flyte/_protos/workflow/task_service_pb2.py,sha256=lY1MamKB9kNprHpBm1zQkeg25aTItXARu7Ta7rxzlB8,3787
135
- flyte/_protos/workflow/task_service_pb2.pyi,sha256=YY9pajzA_eF_xMHgVQMvThNI0QYulgfLn1741IYo8tI,1495
136
- flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=PdhEfPraBIeN-UQulZsA2D0on830aTbfkBpvxPZBq9E,4311
137
- flyte/_utils/__init__.py,sha256=6-hCbI-RMQ-Ey9QrtMWMDMrPgCSIx2ewq7qTHmBy4i8,539
138
- flyte/_utils/asyn.py,sha256=KeJKarXNIyD16g6oPM0T9cH7JDmh1KY7JLbwo7i0IlQ,3673
139
- flyte/_utils/coro_management.py,sha256=hlWzxdrsBYfUwzQS7qtltclG56XPxBMNgWE5lkuYdrY,760
140
- flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
141
- flyte/_utils/helpers.py,sha256=Ntrs1WilJS7a4oLmcIPLXMi0cuzRDiCr_wwgtpV30uk,3953
142
- flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
143
- flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
144
- flyte/config/__init__.py,sha256=cNTPvzi1PXdLK3oj2pSMSRvTMhay_38RyqbYYbYTvCU,8033
145
- flyte/config/_config.py,sha256=tDuf2XY-4GE-NHAmMdgp_FUBidAr7Ab2VakyWs1fKTc,6898
146
- flyte/config/_internal.py,sha256=ylQN6RKxlUVQsgOLSR2a_4lgZ0k99xRj8o-MNTfsgWE,2836
147
- flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
149
- flyte/extras/_container.py,sha256=Us3gfyDtr0MiI1n6HIeGOTmJewxxpS7HyfRx12LMYHE,11248
150
- flyte/io/__init__.py,sha256=e2wHVEoZ84TGOtOPrtTg6hJpeuxiYI56Sg011yq6nUQ,236
151
- flyte/io/_dataframe.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
- flyte/io/_dir.py,sha256=K3tz3pHKmpMppgX2HtI6Bz0H6EIdHFj96-7Ub47TJO8,15328
153
- flyte/io/_file.py,sha256=Ek40PN-Qo30HZvUKetXUGZKYooevtF-LoPtxMZGBa3I,15533
154
- flyte/io/pickle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
- flyte/io/pickle/transformer.py,sha256=b7vAxLHgi-HMHy3vOG0sGMeDf6LimFmU_jAcvNOZI1o,4047
156
- flyte/io/structured_dataset/__init__.py,sha256=69ixVV9OEXiLiQ6SV2S8tEC7dVQe7YTt9NV1OotlG64,4524
157
- flyte/io/structured_dataset/basic_dfs.py,sha256=lrcALNYke_gSmmAhIiUN5afqhA-W5bSuKJUCoW6S4CE,8223
158
- flyte/io/structured_dataset/structured_dataset.py,sha256=DrRIHA3zbkfLBekw3pPTF_SM0Rbn_BGBp1YJPyd9zY0,52644
159
- flyte/remote/__init__.py,sha256=zBWV88VF-L8430xVrOyk07EmLsOKhOUMVBsqFUDtO6Q,565
160
- flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
161
- flyte/remote/_data.py,sha256=qNZwB_cCXBojP6nSIwp8_x0idxhbPFXvmv0SoKwvENE,5791
162
- flyte/remote/_logs.py,sha256=aoC0TsLjfTzCGdF7Qv1ezYkLG2_rZibxNLuaVAX66as,4229
163
- flyte/remote/_project.py,sha256=shAs9Hw0e5PAOciTAEOGVsdvo70PunxBXdOylHSyWw8,2834
164
- flyte/remote/_run.py,sha256=9Kehgp4nLb72jrJcLMTO9t2bF5iljX9j4-M7tfcmFug,28027
165
- flyte/remote/_secret.py,sha256=3fPx3RIuRJ0h15gj2CF9xKcAfTSCvhW3i0v4YqPMcCk,4394
166
- flyte/remote/_task.py,sha256=dXeKrQZQ_yGg16AThjlTDX1dGdZexHnA1ZrmlYrzRRU,7931
167
- flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- flyte/remote/_client/_protocols.py,sha256=RVlVpX0jNg9kIf80lgtYimIWlqv30HOiFAdmDAROXCs,5481
169
- flyte/remote/_client/controlplane.py,sha256=upxOrJL8q-y1xNapBBTpfnkXAFvL1Nvomf-qQ3yAU7A,3022
170
- flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
171
- flyte/remote/_client/auth/_channel.py,sha256=wK_B-3TRYYMYYh_RB6Wsqydsl0xLv11zytQf8nHRCJ0,8122
172
- flyte/remote/_client/auth/_client_config.py,sha256=Elit5TCLjMQDiktiUmMKy2POWwwb5rKgIXfG3-rpfbs,3304
173
- flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
174
- flyte/remote/_client/auth/_keyring.py,sha256=BL-FzGe5ryuBRCwwpvvG8IzkYuXiJTU2J0P1l-Za5IM,5176
175
- flyte/remote/_client/auth/_token_client.py,sha256=RUmlxlVZjZlQBE-CM8y_je7SeZhA_Xn0ZI28oVgLLxE,10436
176
- flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
177
- flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
- flyte/remote/_client/auth/_authenticators/base.py,sha256=7ygwRYIt_BoSNfUFuc0E7mS88xD9AkwIkSX2Cv8be34,16636
179
- flyte/remote/_client/auth/_authenticators/client_credentials.py,sha256=e9DOFdKEvaM3uSR10lnNuJaOwAcCkZQWZPKv7xUoFsI,3483
180
- flyte/remote/_client/auth/_authenticators/device_code.py,sha256=G4jBkHS51kQ333dAuk7dCVSpd1Zy8g85YBdwMp8QoO0,4855
181
- flyte/remote/_client/auth/_authenticators/external_command.py,sha256=IfTJQACPd1xc6htZYC-HdMIx6Q9JHBPw1HUG1Pv6lXg,3838
182
- flyte/remote/_client/auth/_authenticators/factory.py,sha256=_oBWs7xIG6l13q06V2PUGIDmzU9-XYUK5hx5S6gZjrU,10291
183
- flyte/remote/_client/auth/_authenticators/pkce.py,sha256=fQatN6oH675QVBDoWsnJ_wWMcIXGA6wR7skC8BOOY5M,23147
184
- flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
186
- flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
187
- flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
188
- flyte/report/_report.py,sha256=36e0qikyY-Wsv4OzvTqkl23pk5ekrXIuhA4qsm_RRQs,5191
189
- flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
190
- flyte/storage/__init__.py,sha256=HV83NpDRznq9WSRGoZet9uhDU9AqlqrcO3Ns1LewoO8,407
191
- flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
192
- flyte/storage/_storage.py,sha256=tHDIPI8xMiECHagXTu8f4gotkX5QrvzZHjCwTz-W5CA,9082
193
- flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
194
- flyte/types/__init__.py,sha256=xMIYOolT3Vq0qXy7unw90IVdYztdMDpKg0oG0XAPC9o,364
195
- flyte/types/_interface.py,sha256=1yWgZxFPvD92uCyQQdAx1zLG6ArL733jhUbpP4DPuqQ,962
196
- flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
197
- flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
198
- flyte/types/_type_engine.py,sha256=I5rnjfcewwd29HQs8vPbrpuul29m4sS_PZhvQ7WS29c,93654
199
- flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
200
- flyte-0.0.1b1.dist-info/METADATA,sha256=l5Y6P-xd28D5EHFFTHY5ORI7HatAJDVFGMtbhZjUZ5I,10279
201
- flyte-0.0.1b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
202
- flyte-0.0.1b1.dist-info/entry_points.txt,sha256=xitFzPlyODadzpIwr-x1mFIpz0IFKpMUJl3dnmxgyPc,76
203
- flyte-0.0.1b1.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
204
- flyte-0.0.1b1.dist-info/RECORD,,