flyte 0.2.0b1__py3-none-any.whl → 2.0.0b46__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.
Files changed (266) hide show
  1. flyte/__init__.py +83 -30
  2. flyte/_bin/connect.py +61 -0
  3. flyte/_bin/debug.py +38 -0
  4. flyte/_bin/runtime.py +87 -19
  5. flyte/_bin/serve.py +351 -0
  6. flyte/_build.py +3 -2
  7. flyte/_cache/cache.py +6 -5
  8. flyte/_cache/local_cache.py +216 -0
  9. flyte/_code_bundle/_ignore.py +31 -5
  10. flyte/_code_bundle/_packaging.py +42 -11
  11. flyte/_code_bundle/_utils.py +57 -34
  12. flyte/_code_bundle/bundle.py +130 -27
  13. flyte/_constants.py +1 -0
  14. flyte/_context.py +21 -5
  15. flyte/_custom_context.py +73 -0
  16. flyte/_debug/constants.py +37 -0
  17. flyte/_debug/utils.py +17 -0
  18. flyte/_debug/vscode.py +315 -0
  19. flyte/_deploy.py +396 -75
  20. flyte/_deployer.py +109 -0
  21. flyte/_environment.py +94 -11
  22. flyte/_excepthook.py +37 -0
  23. flyte/_group.py +2 -1
  24. flyte/_hash.py +1 -16
  25. flyte/_image.py +544 -231
  26. flyte/_initialize.py +456 -316
  27. flyte/_interface.py +40 -5
  28. flyte/_internal/controllers/__init__.py +22 -8
  29. flyte/_internal/controllers/_local_controller.py +159 -35
  30. flyte/_internal/controllers/_trace.py +18 -10
  31. flyte/_internal/controllers/remote/__init__.py +38 -9
  32. flyte/_internal/controllers/remote/_action.py +82 -12
  33. flyte/_internal/controllers/remote/_client.py +6 -2
  34. flyte/_internal/controllers/remote/_controller.py +290 -64
  35. flyte/_internal/controllers/remote/_core.py +155 -95
  36. flyte/_internal/controllers/remote/_informer.py +40 -20
  37. flyte/_internal/controllers/remote/_service_protocol.py +2 -2
  38. flyte/_internal/imagebuild/__init__.py +2 -10
  39. flyte/_internal/imagebuild/docker_builder.py +391 -84
  40. flyte/_internal/imagebuild/image_builder.py +111 -55
  41. flyte/_internal/imagebuild/remote_builder.py +409 -0
  42. flyte/_internal/imagebuild/utils.py +79 -0
  43. flyte/_internal/resolvers/_app_env_module.py +92 -0
  44. flyte/_internal/resolvers/_task_module.py +5 -38
  45. flyte/_internal/resolvers/app_env.py +26 -0
  46. flyte/_internal/resolvers/common.py +8 -1
  47. flyte/_internal/resolvers/default.py +2 -2
  48. flyte/_internal/runtime/convert.py +319 -36
  49. flyte/_internal/runtime/entrypoints.py +106 -18
  50. flyte/_internal/runtime/io.py +71 -23
  51. flyte/_internal/runtime/resources_serde.py +21 -7
  52. flyte/_internal/runtime/reuse.py +125 -0
  53. flyte/_internal/runtime/rusty.py +196 -0
  54. flyte/_internal/runtime/task_serde.py +239 -66
  55. flyte/_internal/runtime/taskrunner.py +48 -8
  56. flyte/_internal/runtime/trigger_serde.py +162 -0
  57. flyte/_internal/runtime/types_serde.py +7 -16
  58. flyte/_keyring/file.py +115 -0
  59. flyte/_link.py +30 -0
  60. flyte/_logging.py +241 -42
  61. flyte/_map.py +312 -0
  62. flyte/_metrics.py +59 -0
  63. flyte/_module.py +74 -0
  64. flyte/_pod.py +30 -0
  65. flyte/_resources.py +296 -33
  66. flyte/_retry.py +1 -7
  67. flyte/_reusable_environment.py +72 -7
  68. flyte/_run.py +462 -132
  69. flyte/_secret.py +47 -11
  70. flyte/_serve.py +333 -0
  71. flyte/_task.py +245 -56
  72. flyte/_task_environment.py +219 -97
  73. flyte/_task_plugins.py +47 -0
  74. flyte/_tools.py +8 -8
  75. flyte/_trace.py +15 -24
  76. flyte/_trigger.py +1027 -0
  77. flyte/_utils/__init__.py +12 -1
  78. flyte/_utils/asyn.py +3 -1
  79. flyte/_utils/async_cache.py +139 -0
  80. flyte/_utils/coro_management.py +5 -4
  81. flyte/_utils/description_parser.py +19 -0
  82. flyte/_utils/docker_credentials.py +173 -0
  83. flyte/_utils/helpers.py +45 -19
  84. flyte/_utils/module_loader.py +123 -0
  85. flyte/_utils/org_discovery.py +57 -0
  86. flyte/_utils/uv_script_parser.py +8 -1
  87. flyte/_version.py +16 -3
  88. flyte/app/__init__.py +27 -0
  89. flyte/app/_app_environment.py +362 -0
  90. flyte/app/_connector_environment.py +40 -0
  91. flyte/app/_deploy.py +130 -0
  92. flyte/app/_parameter.py +343 -0
  93. flyte/app/_runtime/__init__.py +3 -0
  94. flyte/app/_runtime/app_serde.py +383 -0
  95. flyte/app/_types.py +113 -0
  96. flyte/app/extras/__init__.py +9 -0
  97. flyte/app/extras/_auth_middleware.py +217 -0
  98. flyte/app/extras/_fastapi.py +93 -0
  99. flyte/app/extras/_model_loader/__init__.py +3 -0
  100. flyte/app/extras/_model_loader/config.py +7 -0
  101. flyte/app/extras/_model_loader/loader.py +288 -0
  102. flyte/cli/__init__.py +12 -0
  103. flyte/cli/_abort.py +28 -0
  104. flyte/cli/_build.py +114 -0
  105. flyte/cli/_common.py +493 -0
  106. flyte/cli/_create.py +371 -0
  107. flyte/cli/_delete.py +45 -0
  108. flyte/cli/_deploy.py +401 -0
  109. flyte/cli/_gen.py +316 -0
  110. flyte/cli/_get.py +446 -0
  111. flyte/cli/_option.py +33 -0
  112. flyte/{_cli → cli}/_params.py +57 -17
  113. flyte/cli/_plugins.py +209 -0
  114. flyte/cli/_prefetch.py +292 -0
  115. flyte/cli/_run.py +690 -0
  116. flyte/cli/_serve.py +338 -0
  117. flyte/cli/_update.py +86 -0
  118. flyte/cli/_user.py +20 -0
  119. flyte/cli/main.py +246 -0
  120. flyte/config/__init__.py +2 -167
  121. flyte/config/_config.py +215 -163
  122. flyte/config/_internal.py +10 -1
  123. flyte/config/_reader.py +225 -0
  124. flyte/connectors/__init__.py +11 -0
  125. flyte/connectors/_connector.py +330 -0
  126. flyte/connectors/_server.py +194 -0
  127. flyte/connectors/utils.py +159 -0
  128. flyte/errors.py +134 -2
  129. flyte/extend.py +24 -0
  130. flyte/extras/_container.py +69 -56
  131. flyte/git/__init__.py +3 -0
  132. flyte/git/_config.py +279 -0
  133. flyte/io/__init__.py +8 -1
  134. flyte/io/{structured_dataset → _dataframe}/__init__.py +32 -30
  135. flyte/io/{structured_dataset → _dataframe}/basic_dfs.py +75 -68
  136. flyte/io/{structured_dataset/structured_dataset.py → _dataframe/dataframe.py} +207 -242
  137. flyte/io/_dir.py +575 -113
  138. flyte/io/_file.py +587 -141
  139. flyte/io/_hashing_io.py +342 -0
  140. flyte/io/extend.py +7 -0
  141. flyte/models.py +635 -0
  142. flyte/prefetch/__init__.py +22 -0
  143. flyte/prefetch/_hf_model.py +563 -0
  144. flyte/remote/__init__.py +14 -3
  145. flyte/remote/_action.py +879 -0
  146. flyte/remote/_app.py +346 -0
  147. flyte/remote/_auth_metadata.py +42 -0
  148. flyte/remote/_client/_protocols.py +62 -4
  149. flyte/remote/_client/auth/_auth_utils.py +19 -0
  150. flyte/remote/_client/auth/_authenticators/base.py +8 -2
  151. flyte/remote/_client/auth/_authenticators/device_code.py +4 -5
  152. flyte/remote/_client/auth/_authenticators/factory.py +4 -0
  153. flyte/remote/_client/auth/_authenticators/passthrough.py +79 -0
  154. flyte/remote/_client/auth/_authenticators/pkce.py +17 -18
  155. flyte/remote/_client/auth/_channel.py +47 -18
  156. flyte/remote/_client/auth/_client_config.py +5 -3
  157. flyte/remote/_client/auth/_keyring.py +15 -2
  158. flyte/remote/_client/auth/_token_client.py +3 -3
  159. flyte/remote/_client/controlplane.py +206 -18
  160. flyte/remote/_common.py +66 -0
  161. flyte/remote/_data.py +107 -22
  162. flyte/remote/_logs.py +116 -33
  163. flyte/remote/_project.py +21 -19
  164. flyte/remote/_run.py +164 -631
  165. flyte/remote/_secret.py +72 -29
  166. flyte/remote/_task.py +387 -46
  167. flyte/remote/_trigger.py +368 -0
  168. flyte/remote/_user.py +43 -0
  169. flyte/report/_report.py +10 -6
  170. flyte/storage/__init__.py +13 -1
  171. flyte/storage/_config.py +237 -0
  172. flyte/storage/_parallel_reader.py +289 -0
  173. flyte/storage/_storage.py +268 -59
  174. flyte/syncify/__init__.py +56 -0
  175. flyte/syncify/_api.py +414 -0
  176. flyte/types/__init__.py +39 -0
  177. flyte/types/_interface.py +22 -7
  178. flyte/{io/pickle/transformer.py → types/_pickle.py} +37 -9
  179. flyte/types/_string_literals.py +8 -9
  180. flyte/types/_type_engine.py +226 -126
  181. flyte/types/_utils.py +1 -1
  182. flyte-2.0.0b46.data/scripts/debug.py +38 -0
  183. flyte-2.0.0b46.data/scripts/runtime.py +194 -0
  184. flyte-2.0.0b46.dist-info/METADATA +352 -0
  185. flyte-2.0.0b46.dist-info/RECORD +221 -0
  186. flyte-2.0.0b46.dist-info/entry_points.txt +8 -0
  187. flyte-2.0.0b46.dist-info/licenses/LICENSE +201 -0
  188. flyte/_api_commons.py +0 -3
  189. flyte/_cli/_common.py +0 -299
  190. flyte/_cli/_create.py +0 -42
  191. flyte/_cli/_delete.py +0 -23
  192. flyte/_cli/_deploy.py +0 -140
  193. flyte/_cli/_get.py +0 -235
  194. flyte/_cli/_run.py +0 -174
  195. flyte/_cli/main.py +0 -98
  196. flyte/_datastructures.py +0 -342
  197. flyte/_internal/controllers/pbhash.py +0 -39
  198. flyte/_protos/common/authorization_pb2.py +0 -66
  199. flyte/_protos/common/authorization_pb2.pyi +0 -108
  200. flyte/_protos/common/authorization_pb2_grpc.py +0 -4
  201. flyte/_protos/common/identifier_pb2.py +0 -71
  202. flyte/_protos/common/identifier_pb2.pyi +0 -82
  203. flyte/_protos/common/identifier_pb2_grpc.py +0 -4
  204. flyte/_protos/common/identity_pb2.py +0 -48
  205. flyte/_protos/common/identity_pb2.pyi +0 -72
  206. flyte/_protos/common/identity_pb2_grpc.py +0 -4
  207. flyte/_protos/common/list_pb2.py +0 -36
  208. flyte/_protos/common/list_pb2.pyi +0 -69
  209. flyte/_protos/common/list_pb2_grpc.py +0 -4
  210. flyte/_protos/common/policy_pb2.py +0 -37
  211. flyte/_protos/common/policy_pb2.pyi +0 -27
  212. flyte/_protos/common/policy_pb2_grpc.py +0 -4
  213. flyte/_protos/common/role_pb2.py +0 -37
  214. flyte/_protos/common/role_pb2.pyi +0 -53
  215. flyte/_protos/common/role_pb2_grpc.py +0 -4
  216. flyte/_protos/common/runtime_version_pb2.py +0 -28
  217. flyte/_protos/common/runtime_version_pb2.pyi +0 -24
  218. flyte/_protos/common/runtime_version_pb2_grpc.py +0 -4
  219. flyte/_protos/logs/dataplane/payload_pb2.py +0 -96
  220. flyte/_protos/logs/dataplane/payload_pb2.pyi +0 -168
  221. flyte/_protos/logs/dataplane/payload_pb2_grpc.py +0 -4
  222. flyte/_protos/secret/definition_pb2.py +0 -49
  223. flyte/_protos/secret/definition_pb2.pyi +0 -93
  224. flyte/_protos/secret/definition_pb2_grpc.py +0 -4
  225. flyte/_protos/secret/payload_pb2.py +0 -62
  226. flyte/_protos/secret/payload_pb2.pyi +0 -94
  227. flyte/_protos/secret/payload_pb2_grpc.py +0 -4
  228. flyte/_protos/secret/secret_pb2.py +0 -38
  229. flyte/_protos/secret/secret_pb2.pyi +0 -6
  230. flyte/_protos/secret/secret_pb2_grpc.py +0 -198
  231. flyte/_protos/secret/secret_pb2_grpc_grpc.py +0 -198
  232. flyte/_protos/validate/validate/validate_pb2.py +0 -76
  233. flyte/_protos/workflow/node_execution_service_pb2.py +0 -26
  234. flyte/_protos/workflow/node_execution_service_pb2.pyi +0 -4
  235. flyte/_protos/workflow/node_execution_service_pb2_grpc.py +0 -32
  236. flyte/_protos/workflow/queue_service_pb2.py +0 -106
  237. flyte/_protos/workflow/queue_service_pb2.pyi +0 -141
  238. flyte/_protos/workflow/queue_service_pb2_grpc.py +0 -172
  239. flyte/_protos/workflow/run_definition_pb2.py +0 -128
  240. flyte/_protos/workflow/run_definition_pb2.pyi +0 -310
  241. flyte/_protos/workflow/run_definition_pb2_grpc.py +0 -4
  242. flyte/_protos/workflow/run_logs_service_pb2.py +0 -41
  243. flyte/_protos/workflow/run_logs_service_pb2.pyi +0 -28
  244. flyte/_protos/workflow/run_logs_service_pb2_grpc.py +0 -69
  245. flyte/_protos/workflow/run_service_pb2.py +0 -133
  246. flyte/_protos/workflow/run_service_pb2.pyi +0 -175
  247. flyte/_protos/workflow/run_service_pb2_grpc.py +0 -412
  248. flyte/_protos/workflow/state_service_pb2.py +0 -58
  249. flyte/_protos/workflow/state_service_pb2.pyi +0 -71
  250. flyte/_protos/workflow/state_service_pb2_grpc.py +0 -138
  251. flyte/_protos/workflow/task_definition_pb2.py +0 -72
  252. flyte/_protos/workflow/task_definition_pb2.pyi +0 -65
  253. flyte/_protos/workflow/task_definition_pb2_grpc.py +0 -4
  254. flyte/_protos/workflow/task_service_pb2.py +0 -44
  255. flyte/_protos/workflow/task_service_pb2.pyi +0 -31
  256. flyte/_protos/workflow/task_service_pb2_grpc.py +0 -104
  257. flyte/io/_dataframe.py +0 -0
  258. flyte/io/pickle/__init__.py +0 -0
  259. flyte/remote/_console.py +0 -18
  260. flyte-0.2.0b1.dist-info/METADATA +0 -179
  261. flyte-0.2.0b1.dist-info/RECORD +0 -204
  262. flyte-0.2.0b1.dist-info/entry_points.txt +0 -3
  263. /flyte/{_cli → _debug}/__init__.py +0 -0
  264. /flyte/{_protos → _keyring}/__init__.py +0 -0
  265. {flyte-0.2.0b1.dist-info → flyte-2.0.0b46.dist-info}/WHEEL +0 -0
  266. {flyte-0.2.0b1.dist-info → flyte-2.0.0b46.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,221 @@
1
+ flyte/__init__.py,sha256=kf_TEJTFXIN9FopbrfVwuu7gkvcK24fyPeK0UwV8Kqo,2846
2
+ flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
3
+ flyte/_constants.py,sha256=QHzughBvzvUc9l0rmcitq9ZCk0NqNRAG1jwtP3cHTMg,89
4
+ flyte/_context.py,sha256=vh5cxnfM9ewZvJ-xGQEFUYgl5ZWB7Pg6hl-Ws-ySiCo,5618
5
+ flyte/_custom_context.py,sha256=-jcKWBPXw08w_n4o86huiSVPesOyXYcv-2L8RY2hb54,1791
6
+ flyte/_deploy.py,sha256=ERzwRFf8tZB5HcHw7lvpx2OMqopfVKa9G7DYxbquLOQ,20158
7
+ flyte/_deployer.py,sha256=7TaQoYnHLsL6tKgtIjA7ZNLsZ8q4ckHW1CihC1AWJrM,2703
8
+ flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
9
+ flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
10
+ flyte/_environment.py,sha256=Bnw2LI7dYf-HgXqWShjRyHUwmv5iNbWuEckOYTxlf8M,5404
11
+ flyte/_excepthook.py,sha256=0pZ1ZQZSRjDSe2f_CuqAiOccq-KfRXYpnsuhYIs_x90,1293
12
+ flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
13
+ flyte/_hash.py,sha256=KMKjoI7SaxXildb-xv6n5Vb32B0csvBiYc06iUe-BrI,137
14
+ flyte/_image.py,sha256=I7eaWoaIgpKSwne15CqAFzWGZnbGsqgz9bfcMFTzXtg,41833
15
+ flyte/_initialize.py,sha256=kk_cvpTBclbUQDqUDpSXlspI6smw_LHYlfrZzBYAj18,30693
16
+ flyte/_interface.py,sha256=hQiN74NF2guU-BAat-yefP-gQ5f4hQSk0OeHUSKUVh0,4910
17
+ flyte/_link.py,sha256=SmOtILPXE4gXUEv-Qq91ZnD8auEQVaxtbwsP3-ri8wI,923
18
+ flyte/_logging.py,sha256=HnXSAt-g3ocWeE4chAc1ghHCrGFWJxq1dVsoJvP_74I,9794
19
+ flyte/_map.py,sha256=x1wASt3fTuWKaLjE5sABdG9xeHfaUBWvI_RdWy_9jRs,11413
20
+ flyte/_metrics.py,sha256=SKFwcbVsD36vquYwVGyF2F3MhNWRF76p-DLnpeybvSw,1823
21
+ flyte/_module.py,sha256=gKgUoQmFHhUbEy9FDhD6FLrf0cWv17UUyg25HDO8_IM,3154
22
+ flyte/_pod.py,sha256=NtXZ70jJVfp8FGastHGVypfTZiYkoKAtj1IVfUEMiv0,1107
23
+ flyte/_resources.py,sha256=UUvLoXxpHsBzMrD6wAAI8Fi90QgM-he8p_sGhD2o630,14427
24
+ flyte/_retry.py,sha256=K7jhuh4h0Un2N2AMyVRy0r2iwLN-hiML4m-_U9vI-7k,576
25
+ flyte/_reusable_environment.py,sha256=ujD3eHJ2YKTZ4tyo1pS6IeBChnKKcPpDlelVfNGtpy0,4409
26
+ flyte/_run.py,sha256=MtzP2J7Wqg8nV4VXESPXp1tKvMlq4GdMfBVJ6ldyadA,31430
27
+ flyte/_secret.py,sha256=Ct_JRHC1pOHcUCf72oAySH072uvcR_iiavVf0fV9k1M,3511
28
+ flyte/_serve.py,sha256=PrRHnyNGIJ6be4suEuzTN4NWNlOyZ5cs33CobBOcWEI,12510
29
+ flyte/_task.py,sha256=maVcWPNcvJRYh3vUluFd5Zv6QnU44jlT93NHBENSJFs,23494
30
+ flyte/_task_environment.py,sha256=MtsFI8lBfN_0zJ-XiqkozLjXrKgzTXYrrb8BnyrDckQ,14111
31
+ flyte/_task_plugins.py,sha256=4KcdSERpQ0yR9q0CO3H2VC84egaj7r1fqHg8YO2xsFM,1093
32
+ flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
33
+ flyte/_tools.py,sha256=lB3OiJSAhxzSMCYjLUF6nZjlFsmNpaRXtr3_Fefcxbg,747
34
+ flyte/_trace.py,sha256=-BIprs2MbupWl3vsC_Pn33SV3fSVku1rUIsnwfmrIy0,5204
35
+ flyte/_trigger.py,sha256=Uk8zYpcLgHVT7qa7C01kFRU2f3TJr5wgBQ_BBdxYheA,30269
36
+ flyte/_version.py,sha256=LKsUPMofYY3d5kMDKLWsIohR51Ok0y3r27k_6Co7cVY,722
37
+ flyte/errors.py,sha256=DSPn1Vt3ixtK1_QEtJKfMZPcaj8hEgw0vuHj7-UzqOw,7902
38
+ flyte/extend.py,sha256=f9cDmCwEv5sOXKnoFbqcecEaPAG0OLROpkdvOkcLhaI,812
39
+ flyte/models.py,sha256=iEF2kiogaHhTwxQ9xej9IB5fuVZedtms113KnldD-PE,23047
40
+ flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ flyte/_bin/connect.py,sha256=Pf6iIRGGlEF3LRbLzbJwmMAjXBbVt1iauWZBTfTvzN8,1348
43
+ flyte/_bin/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
44
+ flyte/_bin/runtime.py,sha256=hN9TOKm_9O90BzaLHOKRBVlbqMg5p6j03IQSOS6ASpo,7075
45
+ flyte/_bin/serve.py,sha256=UxKXXYJV5rRl4wuivhk3fmy5va5-sSZQ06s0doRZO94,13100
46
+ flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
47
+ flyte/_cache/cache.py,sha256=WmvpvXCzI1leXyjOmG0n4G53BoMy9lI-9Q7WoU0r7RU,5124
48
+ flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
49
+ flyte/_cache/local_cache.py,sha256=czSjM8vpchNxIiuspUH1b_gz_pEBiYT3RkoaA8DppNQ,7044
50
+ flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
51
+ flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
52
+ flyte/_code_bundle/_ignore.py,sha256=-j7FjQzJLdZqPGDENUQtleTLa751csTWyzFYoN1LGxU,4335
53
+ flyte/_code_bundle/_packaging.py,sha256=DeWrgrKTzo-XPuXS9_Kbx11R1zQ92YmCnUd_tsBszmI,7952
54
+ flyte/_code_bundle/_utils.py,sha256=d4phR4XCfkmrzayWWEB22Irq2xgBir6L53zmpLN2Kq8,13694
55
+ flyte/_code_bundle/bundle.py,sha256=kW2YBYIKwE2cVmm-qd-mSxaq3f-4e3DlVRL_T4Ofbxw,11840
56
+ flyte/_debug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
+ flyte/_debug/constants.py,sha256=vBT4leo8apbdAOczNgcKdtMgHyG28gsUvZXyDmMQ7v0,1497
58
+ flyte/_debug/utils.py,sha256=Nc6n1Y_OdLMa4VtvigP6U738D4Fpbuog94g37tPwu6k,596
59
+ flyte/_debug/vscode.py,sha256=pu5Env4cMgH29IfEHUH1D3K03PudOCxDjgeJgcZ5rw0,11605
60
+ flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
61
+ flyte/_internal/controllers/__init__.py,sha256=yNALzu-3YVii_D_GlrBoWUpL4PTLYUa7oIKnA7hbee0,4296
62
+ flyte/_internal/controllers/_local_controller.py,sha256=6ZKwnl4CjdIid9D9K-NWo0LQLjmGfoNG6NE6ZHEVRpY,9303
63
+ flyte/_internal/controllers/_trace.py,sha256=WE0DnB9ID0gMw_o-m3JXOhIg-PVrRHqVACKvsemOvSc,1500
64
+ flyte/_internal/controllers/remote/__init__.py,sha256=kDrSzZ-kL9zoXWmC6G-owz5KXnS2VPx88LK2eEzLzbE,2468
65
+ flyte/_internal/controllers/remote/_action.py,sha256=eo8FHnR_LVvWDBtFn6THZQ00TSOkAPeZ2GRQWmD3wrY,7404
66
+ flyte/_internal/controllers/remote/_client.py,sha256=_qtnkKCmWIPslu1LUNXOMf_hc6fAfHnvlqFoKUIeihU,1417
67
+ flyte/_internal/controllers/remote/_controller.py,sha256=i6pI09FtiPghNgMMMy86oYXhHXyRkXSi-lLWyixfi14,25484
68
+ flyte/_internal/controllers/remote/_core.py,sha256=avVs4z9Uap8qfsrqhvuJNmOm_DVnWqaZydCY2qvuPW4,20925
69
+ flyte/_internal/controllers/remote/_informer.py,sha256=MF2DAO-oGdinvxmW-ldIjEuuCemQg4KyQNIKiPgPjeI,14931
70
+ flyte/_internal/controllers/remote/_service_protocol.py,sha256=c8bBVsKNb84Q7Q50_ttZMf1zKadDP6Z8Qyw3LPfCf-A,1350
71
+ flyte/_internal/imagebuild/__init__.py,sha256=dwXdJ1jMhw9RF8itF7jkPLanvX1yCviSns7hE5eoIts,102
72
+ flyte/_internal/imagebuild/docker_builder.py,sha256=TICkhNvdFFFarAlTfyRxBTSqTa9jcyuCFJXsigbdvC0,27204
73
+ flyte/_internal/imagebuild/image_builder.py,sha256=z7c4T6ZtcMELuZvFczQm4XFkeNzdgUHp2VTnYtLBEIc,11708
74
+ flyte/_internal/imagebuild/remote_builder.py,sha256=AonwPnQYNEnjJzOk9LP_vqM57kCkefhscv1ZmcwIepQ,17076
75
+ flyte/_internal/imagebuild/utils.py,sha256=aEXr6D670Q2SD3tNizdG_LGDMLprQDNCjlAkv_u9MRU,3336
76
+ flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ flyte/_internal/resolvers/_app_env_module.py,sha256=PIju6-Ylp78zhyuJypxfdepAb1ujbM6h9JDXSfLECJw,4026
78
+ flyte/_internal/resolvers/_task_module.py,sha256=lGX0-83IqAq8Fq4CzoGbB3pAu6GIUU26CzWaI_xSg_U,807
79
+ flyte/_internal/resolvers/app_env.py,sha256=mF6TgB6SSLzEocepy7R_bhHo0tnIfGW_rdM7UEZjd-E,992
80
+ flyte/_internal/resolvers/common.py,sha256=lbi7uxaYigZXuPxN9YBOI9r3q4gbVjVWUO1IUzyQ4zY,1282
81
+ flyte/_internal/resolvers/default.py,sha256=NL1jxTL9fUctUhwUXu3PpP2-7sGAblqf51d6FdnMqdw,954
82
+ flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
+ flyte/_internal/runtime/convert.py,sha256=XCTfldzjkyH6A9DZvrR4CYjDk5DddUr480XspP6gUCg,19868
84
+ flyte/_internal/runtime/entrypoints.py,sha256=fTGLQW12ADi-XTYymFUJP2_FEQVUVS-fU5DCGe-yqZg,8226
85
+ flyte/_internal/runtime/io.py,sha256=mISz5K1HM_cFi7O6SF5jzSOJz9PIyfjp0kFGxy7ZsMk,6523
86
+ flyte/_internal/runtime/resources_serde.py,sha256=pZd9r8JDm3byyoa9GG-sl1eiPAkKiNlANQMZae3IKrg,5367
87
+ flyte/_internal/runtime/reuse.py,sha256=YBkD4UZ2_STdN5yOn8pBzINz_MaWfeMldBLrccCWMXA,4968
88
+ flyte/_internal/runtime/rusty.py,sha256=e4rTXD_AgAOtARZ9erLDHh06FI1azIpPRST3dYTscVM,7395
89
+ flyte/_internal/runtime/task_serde.py,sha256=P9qcmFAU6s7opJzUb5CStnsGbJF45hTK7mbFQYq_bpE,15795
90
+ flyte/_internal/runtime/taskrunner.py,sha256=NlqKxEmk0yQKVCzs1igVfza3em21if7hkpZRTsG27oc,8569
91
+ flyte/_internal/runtime/trigger_serde.py,sha256=7suNi_QhJzpz6a835ULUZCL9CxhUeY63zFS1IlQQyts,5374
92
+ flyte/_internal/runtime/types_serde.py,sha256=CMZGoh1bP69FhwvKXdijZG2C9nd4HLp3Wio3c1Wj6eQ,1350
93
+ flyte/_keyring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
+ flyte/_keyring/file.py,sha256=DPfaNT1Gs5_j1oFfZaGU_myWw8lMagUSeF1kMvnbLVw,4172
95
+ flyte/_utils/__init__.py,sha256=YSHpDCqMin7EUiL9FRde4vURjvfee2bO-MP61WpG3qQ,923
96
+ flyte/_utils/asyn.py,sha256=TrwAhvt2Jqvfh3ArBnzXi_YLOtHle5D5QzV-AvC6XHI,3728
97
+ flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
98
+ flyte/_utils/coro_management.py,sha256=M0uiYFo2AGDsPMiDRv_W-oeFLmG98Lav57tX7DRNdog,940
99
+ flyte/_utils/description_parser.py,sha256=5nqqoUuU4AVCFeUVGnQ_WbHdYz1nxGTeXTkxmWYFvEA,685
100
+ flyte/_utils/docker_credentials.py,sha256=mCWfBJuKAFHjdzWK8pFtB_OcdqauJW_1BC-fKNijbys,6049
101
+ flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
102
+ flyte/_utils/helpers.py,sha256=9N70yzfLF4lLGEEdOv5OcweEpYtrCvZqqhtzkjZUXNY,4779
103
+ flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
104
+ flyte/_utils/module_loader.py,sha256=FgMt9afZkT3_pIwQvvwjoVX0TUR9B7C4LVn6mb5aFzs,4620
105
+ flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
106
+ flyte/_utils/uv_script_parser.py,sha256=PH-JYdVzPVzNxfjJZcbUJWdTiX7Seh4cBfkiYKX6tys,1812
107
+ flyte/app/__init__.py,sha256=Ug2EfG7VjyFSp_pIrpnf0ezY4AVfYizEJuXBxXG9eDM,667
108
+ flyte/app/_app_environment.py,sha256=37WmiUpVkdschBu-J_9yJCTu76Amg8ySEy3kdtzblPI,14878
109
+ flyte/app/_connector_environment.py,sha256=hmY86Q_5yG_GOt3UCU0o7Tuf-3i5QmY7UKPIfniJVAk,1359
110
+ flyte/app/_deploy.py,sha256=hIXSh8lA60BDk5t05In6Jfun-O-77pauG_n2LC8MYmU,4923
111
+ flyte/app/_parameter.py,sha256=SmkejA157SnSCyNbdGDrCm3-fIyAQLfyrWYeSAcGjNo,11515
112
+ flyte/app/_types.py,sha256=5-LzrmddDQre-hFW0p1Jgyoy7Gt4WaYseoE7y-xXt2U,3865
113
+ flyte/app/_runtime/__init__.py,sha256=HYwXMg5xp6VRsilud5UEzkFwllxFWDkzAk5qdQumHqk,88
114
+ flyte/app/_runtime/app_serde.py,sha256=0ZpWXlPRPP_UJX1fwp_kYcpc7ikAgmrAH8s9Z3bO7aw,13308
115
+ flyte/app/extras/__init__.py,sha256=Rba3BeuMnbUOWaMB_0VRDj5VTcHlaebGLcjCPYNcQqE,200
116
+ flyte/app/extras/_auth_middleware.py,sha256=hIFt9fB7eyrQgtk1lH2QgW_KBbhZkt20X16txNfa9OQ,7484
117
+ flyte/app/extras/_fastapi.py,sha256=gIWzrgOoqV6F51UKsOlrTcYSdfXqmoTtIuN77K8npDY,3465
118
+ flyte/app/extras/_model_loader/__init__.py,sha256=chBKYMcFKK79AJHR5LNMJc9YVMfNa4fXhWC7HB7ua_E,97
119
+ flyte/app/extras/_model_loader/config.py,sha256=muHFEah-YUz6PgEICf0fleJ2WSgExc6-0grgwfRl4yM,426
120
+ flyte/app/extras/_model_loader/loader.py,sha256=eCy0q9f0AHGv06D7MeQqcnBEG377H3MaVg6nNXPSVro,10355
121
+ flyte/cli/__init__.py,sha256=aeCcumeP9xD_5aCmaRYUPCe2QRJSGCaxcUbTZ3co768,341
122
+ flyte/cli/_abort.py,sha256=drOg1EyQq0jZP9IpUS4hnqqhKHpml0yGiLH5t3Dg6q4,721
123
+ flyte/cli/_build.py,sha256=R0cgC-C55pdHI73sGxEOjzptcL4gmUmRf7ZmCPr3hdk,3503
124
+ flyte/cli/_common.py,sha256=_R7I7uj1SBvI3Qoops70ijmiq0ow7AHw9MEDYbMOg3M,16952
125
+ flyte/cli/_create.py,sha256=k5q2uSVQ_MoLtLH42XlvjDlGnecLiWA_Bad06Eau0Eo,11776
126
+ flyte/cli/_delete.py,sha256=FErGR5z-1Sbl8JqeSKWFlMnGFJfNcJ2-lAyd_ZLZxdY,1339
127
+ flyte/cli/_deploy.py,sha256=8z0Bz_P4tLpMkgeJ9MNCoOT1M1jfu1VrBaf7UwHh08c,13518
128
+ flyte/cli/_gen.py,sha256=C6ghsxHmTkZ_XQZCxV4Y_9_sz-JhfCAmGOpsI9Gvn1o,11936
129
+ flyte/cli/_get.py,sha256=8Llit6HbRIdqjr57b45_gSL1aBo9ob4fp7jOdIJIlvw,14536
130
+ flyte/cli/_option.py,sha256=oC1Gs0u0UrOC1SsrFo-iCuAkqQvI1wJWCdjYXA9rW4Q,1445
131
+ flyte/cli/_params.py,sha256=EsOWg11BGRpIoLhCDUAzFg_Zh1YFhzd1Ok_CfAI6B0M,20987
132
+ flyte/cli/_plugins.py,sha256=j_17iJXaeGFagDf31cGGbf7VKHCRGNUAAjI7g5FoXgs,8021
133
+ flyte/cli/_prefetch.py,sha256=bxDIZbPNBs1LQp7hYE3Qc01fpu5-NL8hhBtYYjFep9w,8082
134
+ flyte/cli/_run.py,sha256=G4ZA5orR22IuJTVoawH60eY5ORuF_DY_oVUik0I4Vzo,24892
135
+ flyte/cli/_serve.py,sha256=qVGl6uoMmb-czjRDP5eoCD3nRev-VHQqFMBZnfqI0ho,11351
136
+ flyte/cli/_update.py,sha256=kOVvHSRFB6vC50mUcEGfj1QjKqwPvuIHv6qoUfMoR1w,2767
137
+ flyte/cli/_user.py,sha256=cwDxaYu-ep0mv_bZG3y24HRWW38l7rpaz0MN1nJSJVM,366
138
+ flyte/cli/main.py,sha256=2mV3CFXaouM-xQTB4Wz4Ckjwin4TN5pBBVIFvQPsM5s,7028
139
+ flyte/config/__init__.py,sha256=MiwEYK5Iv7MRR22z61nzbsbvZ9Q6MdmAU_g9If1Pmb8,144
140
+ flyte/config/_config.py,sha256=IPfKboFar4CELhdJf583R10gG0PIhzUl1YAAP0ccObc,11109
141
+ flyte/config/_internal.py,sha256=cmRtr6JeIkSfGgw9gloDkTuGpFNdwoUbnBJgbmAhPUE,3055
142
+ flyte/config/_reader.py,sha256=RRGaPkFqDn4b5-xRfiDPvmT78WQtEzUc4N7FPIhEN_0,7707
143
+ flyte/connectors/__init__.py,sha256=LEKk8cl4Z0rL_ibu4TOhB3WJZKDwujNcVQ8SX4tD0MA,306
144
+ flyte/connectors/_connector.py,sha256=szwRTkzlRpzpLatDu0onOKv_dNF6knZAkleMKWK6V5o,12805
145
+ flyte/connectors/_server.py,sha256=C8SBeZ4KvfUckEsIa0KN-6KWFHiOK41njsVwSu44UwI,8503
146
+ flyte/connectors/utils.py,sha256=0-w6uPVEgDIb9xIJWLtB9qpNDBv5z1XBdqw0e1B51CE,5823
147
+ flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
148
+ flyte/extras/_container.py,sha256=-JFOPgZu9R1wa4pzvbV4_Gz9MxI2ME6A_2V94dpsHDQ,12128
149
+ flyte/git/__init__.py,sha256=EI4sLs57sylvYucfI5DmzwPH1tCJJ0huRTyklUUoiHI,94
150
+ flyte/git/_config.py,sha256=7PrwKW8RCeG1dnlQvHY-RuzhEEFbKmEY9D4q0l-WfwU,9759
151
+ flyte/io/__init__.py,sha256=20N12UvbESYISfzmLGcm3W7dLCBO2R9062dR_6tJMgs,323
152
+ flyte/io/_dir.py,sha256=l-EFpnP47gt6Y3jeM_beQOpJMPNpBqxVjzdGV9YaYr0,31489
153
+ flyte/io/_file.py,sha256=flvidLz6vbkJLYtBrbOWKnjA6ki2VQHvNmsxHvc9Bxo,33570
154
+ flyte/io/_hashing_io.py,sha256=QvhQ4K5jiHgzzPqZY4gFz5Fm-BAzq6bzyCpzXhfnWlk,10014
155
+ flyte/io/extend.py,sha256=zlthr-esaaU9Pu0xM_OMI5CbYPuj-zD9Ldbz93dyVjk,184
156
+ flyte/io/_dataframe/__init__.py,sha256=bbc72MKlwwlUXZO2Hc1jmaXtzSx-TE6aIJ3kzYupyoo,4311
157
+ flyte/io/_dataframe/basic_dfs.py,sha256=PNBd_Weo0aw4y8DCceuf9u4m9eQSPKtvzzKxenGPGcM,8112
158
+ flyte/io/_dataframe/dataframe.py,sha256=ab4f8zrembIMyQSUohKgL5MFtcei0kAuEJjHJpWIAdI,49537
159
+ flyte/prefetch/__init__.py,sha256=5fLC_xeSmhtUxUlJpinQQqkDYXkWh9FYCDU_4g0ebV4,403
160
+ flyte/prefetch/_hf_model.py,sha256=iHEhVCx5W9bJV6LpMGR0WphRyNpKyT6-HiAyAj3lkHM,19744
161
+ flyte/remote/__init__.py,sha256=-YUaumGdmFpsr4AkiaPaJogZ8CmPOWW6rtDabsCyzcQ,826
162
+ flyte/remote/_action.py,sha256=3sGI4cukar7deBf9wFhC7ISlRREUTR0w_kntaZIweys,28999
163
+ flyte/remote/_app.py,sha256=jP9upt2T06JECm5vq-aLNP-ZC13tgRzzYvISvf3moyA,11804
164
+ flyte/remote/_auth_metadata.py,sha256=QdmTaKdsVnrY3car_zhGKTGx0R_Uqb0VySOaZl4LvkY,949
165
+ flyte/remote/_common.py,sha256=rQUTo402IRQTd0TWg8Oxv0WUGcUnW6FNWkPKdvjl1dA,2139
166
+ flyte/remote/_data.py,sha256=IUddhq8NBAJ3VzuRL5Ii4-LRvyYXruh_eYvS1374RFk,8951
167
+ flyte/remote/_logs.py,sha256=TT03LYXnKVFIsy1e3nl6gB_YCBVUg9HSUrCUhEwt2to,7252
168
+ flyte/remote/_project.py,sha256=IbkxKRAvZunKLIwpmcreA4O-0GxWC0KPC62WSYvsK34,2868
169
+ flyte/remote/_run.py,sha256=eJIeWoyTPNHv6mmP2yQQpQirYsieBePod_b-LYh1Fjs,12966
170
+ flyte/remote/_secret.py,sha256=bEnm_ibD0-cIw3EwsnjBf2SWL0sgf6on1H56gEWfeo0,5780
171
+ flyte/remote/_task.py,sha256=F6htCLCXTXBP_R5yl9zJF1jk3QH7meTDlr2EaP4gU2M,20949
172
+ flyte/remote/_trigger.py,sha256=kgVJwjmHbpP_yNSFjjB9u_b74yG2o9LWBtjqI7RjTj4,11580
173
+ flyte/remote/_user.py,sha256=5F512Xip3jf7n6Ji_ieVRKqtEq8x3MhaIZDEpDVychE,1023
174
+ flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
+ flyte/remote/_client/_protocols.py,sha256=tut_DRUkgaKUXnQvKf-R0jYxMnMD2FQeZygz4Bmhmv4,7929
176
+ flyte/remote/_client/controlplane.py,sha256=bhvOAif5yYqdUAbjQJ8gidxAWX9CRtBB1j2rTUVUnLQ,9123
177
+ flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
178
+ flyte/remote/_client/auth/_auth_utils.py,sha256=U_CoOYDj6n5hYBztz6Iz6eCqSH9Z2aDJjE81ASSBX6M,784
179
+ flyte/remote/_client/auth/_channel.py,sha256=dPzFhkXa0a8cf7t1VvOfzFQGUQpiF0yK9J5RWwzHnOg,9535
180
+ flyte/remote/_client/auth/_client_config.py,sha256=ktJIAOUgpWnyVl4s1KgsdLA4C9Ht-q6fZarVXxb8RYM,3450
181
+ flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
182
+ flyte/remote/_client/auth/_keyring.py,sha256=g9ko9W5xeS15958hVFCkwAZe7ilcgn729QgPYd0aeN8,5815
183
+ flyte/remote/_client/auth/_token_client.py,sha256=FxFaG_DcynQIZfEdAuJUsrcy0OnYbEr4gKLpu8WZHJo,10460
184
+ flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
185
+ flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
+ flyte/remote/_client/auth/_authenticators/base.py,sha256=LIIYt46j6_ShJRiwjNwNX-LxLiUoG1qbiN0ypyzGedY,17020
187
+ flyte/remote/_client/auth/_authenticators/client_credentials.py,sha256=e9DOFdKEvaM3uSR10lnNuJaOwAcCkZQWZPKv7xUoFsI,3483
188
+ flyte/remote/_client/auth/_authenticators/device_code.py,sha256=YKj0HLT2Gegoc8_mKEOgVRUw_Bp9EtDeTUAvmc3IoMY,4806
189
+ flyte/remote/_client/auth/_authenticators/external_command.py,sha256=IfTJQACPd1xc6htZYC-HdMIx6Q9JHBPw1HUG1Pv6lXg,3838
190
+ flyte/remote/_client/auth/_authenticators/factory.py,sha256=mbNawlALNXJ8xSnu6WhAaU-NzeNTvskfS5ghn4z1HT8,10496
191
+ flyte/remote/_client/auth/_authenticators/passthrough.py,sha256=wneAz4LbZ2aj5gohUOx3V7ueIfiMM8r-2AAhIjreUts,2851
192
+ flyte/remote/_client/auth/_authenticators/pkce.py,sha256=uGfV5eGtcZ_bcVImk2nFwEhAw7zMU_3ZWA3Gs5hdwKQ,23295
193
+ flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
195
+ flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
196
+ flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
197
+ flyte/report/_report.py,sha256=b-VMFke-5SitqGfNEXKTm0PuEPzonWpvlAl5V3wSh4o,5328
198
+ flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
199
+ flyte/storage/__init__.py,sha256=Lvss5m16YAxEb_NX73VsSv0LdXzsRpJ0iRwucu1PvfQ,635
200
+ flyte/storage/_config.py,sha256=Pl4i5KSkUJA_4HqDdvQlPn1OxFmVWIxl1bw0tp0mDGM,8871
201
+ flyte/storage/_parallel_reader.py,sha256=4DwyY-FLlcYOKB8TdyVeFcdJEs_c4m8UEtdgcHhlWkc,10172
202
+ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
203
+ flyte/storage/_storage.py,sha256=usKtlbFPQ4dHWNYOgbieW6blNP69oxZTMzL7f1QAy9U,16727
204
+ flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
205
+ flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
206
+ flyte/syncify/_api.py,sha256=Tz2rxHdf42GxUUaOvu9Gna4BGWLdrftXF4ABtSQPtTQ,16303
207
+ flyte/types/__init__.py,sha256=Pt9BmwAPuxGuvrIvpFj3N04tXAp1V3m8bDyJfwoUcT0,2230
208
+ flyte/types/_interface.py,sha256=jBKq7-IRGpkZRwrP4Ex3pDkyN3BmVehP6xlrrkMqOag,1670
209
+ flyte/types/_pickle.py,sha256=qap9ufbudVCPZLAZXu_rDt7KlwOpKwEqxlnjfLf9Nx0,5241
210
+ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
211
+ flyte/types/_string_literals.py,sha256=Tg14opnmkB7MvfNyUACbcPAeph6vg88aW5yC_G9kPIA,4167
212
+ flyte/types/_type_engine.py,sha256=WUk00h4QLhywhiDN7TyzHmd9NxIocCE4Y2hBFw8f9js,99065
213
+ flyte/types/_utils.py,sha256=-4M__ImscXMqsySaKDrCBJA-xX-c1-Vbc0_zPVoGRyc,2627
214
+ flyte-2.0.0b46.data/scripts/debug.py,sha256=hnX2tlv9QbqckoT5CJ3c3apJj3tGDpsrdV7ZAsE7j34,911
215
+ flyte-2.0.0b46.data/scripts/runtime.py,sha256=hN9TOKm_9O90BzaLHOKRBVlbqMg5p6j03IQSOS6ASpo,7075
216
+ flyte-2.0.0b46.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
217
+ flyte-2.0.0b46.dist-info/METADATA,sha256=NHcI_zlbyWdznuSvhKvgKERkPbXuvvZw0SaP39snzcA,10388
218
+ flyte-2.0.0b46.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
219
+ flyte-2.0.0b46.dist-info/entry_points.txt,sha256=Rjm64Tubw-XgbbkbMIcOsVboPvOJ1wcgtjOC6-Uet8s,196
220
+ flyte-2.0.0b46.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
221
+ flyte-2.0.0b46.dist-info/RECORD,,
@@ -0,0 +1,8 @@
1
+ [console_scripts]
2
+ a0 = flyte._bin.runtime:main
3
+ c0 = flyte._bin.connect:main
4
+ flyte = flyte.cli.main:main
5
+ fserve = flyte._bin.serve:main
6
+
7
+ [keyring.backends]
8
+ flyte_keyring_file = flyte._keyring.file
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
flyte/_api_commons.py DELETED
@@ -1,3 +0,0 @@
1
- from synchronicity import Synchronizer
2
-
3
- syncer = Synchronizer()