ob-metaflow-stubs 4.7__py2.py3-none-any.whl → 4.9__py2.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.
- metaflow-stubs/__init__.pyi +668 -619
- metaflow-stubs/cards.pyi +5 -5
- metaflow-stubs/cli.pyi +2 -2
- metaflow-stubs/client/__init__.pyi +4 -4
- metaflow-stubs/client/core.pyi +6 -6
- metaflow-stubs/client/filecache.pyi +2 -2
- metaflow-stubs/clone_util.pyi +2 -2
- metaflow-stubs/events.pyi +2 -2
- metaflow-stubs/exception.pyi +2 -2
- metaflow-stubs/flowspec.pyi +5 -5
- metaflow-stubs/generated_for.txt +1 -1
- metaflow-stubs/includefile.pyi +4 -4
- metaflow-stubs/metadata/metadata.pyi +3 -3
- metaflow-stubs/metadata/util.pyi +2 -2
- metaflow-stubs/metaflow_config.pyi +2 -2
- metaflow-stubs/metaflow_current.pyi +35 -12
- metaflow-stubs/mflog/mflog.pyi +2 -2
- metaflow-stubs/multicore_utils.pyi +2 -2
- metaflow-stubs/parameters.pyi +4 -4
- metaflow-stubs/plugins/__init__.pyi +6 -2
- metaflow-stubs/plugins/airflow/__init__.pyi +2 -2
- metaflow-stubs/plugins/airflow/airflow.pyi +4 -4
- metaflow-stubs/plugins/airflow/airflow_cli.pyi +2 -2
- metaflow-stubs/plugins/airflow/airflow_decorator.pyi +2 -2
- metaflow-stubs/plugins/airflow/airflow_utils.pyi +2 -2
- metaflow-stubs/plugins/airflow/exception.pyi +2 -2
- metaflow-stubs/plugins/airflow/sensors/__init__.pyi +2 -2
- metaflow-stubs/plugins/airflow/sensors/base_sensor.pyi +2 -2
- metaflow-stubs/plugins/airflow/sensors/external_task_sensor.pyi +2 -2
- metaflow-stubs/plugins/airflow/sensors/s3_sensor.pyi +2 -2
- metaflow-stubs/plugins/argo/__init__.pyi +2 -2
- metaflow-stubs/plugins/argo/argo_client.pyi +2 -2
- metaflow-stubs/plugins/argo/argo_events.pyi +2 -2
- metaflow-stubs/plugins/argo/argo_workflows.pyi +38 -5
- metaflow-stubs/plugins/argo/argo_workflows_cli.pyi +269 -4
- metaflow-stubs/plugins/argo/argo_workflows_decorator.pyi +229 -4
- metaflow-stubs/plugins/argo/argo_workflows_deployer.pyi +292 -0
- metaflow-stubs/plugins/aws/__init__.pyi +2 -2
- metaflow-stubs/plugins/aws/aws_client.pyi +2 -2
- metaflow-stubs/plugins/aws/aws_utils.pyi +2 -2
- metaflow-stubs/plugins/aws/batch/__init__.pyi +2 -2
- metaflow-stubs/plugins/aws/batch/batch.pyi +2 -2
- metaflow-stubs/plugins/aws/batch/batch_cli.pyi +2 -2
- metaflow-stubs/plugins/aws/batch/batch_client.pyi +2 -2
- metaflow-stubs/plugins/aws/batch/batch_decorator.pyi +3 -3
- metaflow-stubs/plugins/aws/secrets_manager/__init__.pyi +2 -2
- metaflow-stubs/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/__init__.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/dynamo_db_client.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/event_bridge_client.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/production_token.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/schedule_decorator.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/step_functions.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/step_functions_cli.pyi +23 -3
- metaflow-stubs/plugins/aws/step_functions/step_functions_client.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/step_functions_decorator.pyi +2 -2
- metaflow-stubs/plugins/aws/step_functions/step_functions_deployer.pyi +260 -0
- metaflow-stubs/plugins/azure/__init__.pyi +2 -2
- metaflow-stubs/plugins/azure/azure_credential.pyi +2 -2
- metaflow-stubs/plugins/azure/azure_exceptions.pyi +2 -2
- metaflow-stubs/plugins/azure/azure_secret_manager_secrets_provider.pyi +2 -2
- metaflow-stubs/plugins/azure/azure_utils.pyi +2 -2
- metaflow-stubs/plugins/azure/blob_service_client_factory.pyi +2 -2
- metaflow-stubs/plugins/azure/includefile_support.pyi +2 -2
- metaflow-stubs/plugins/cards/__init__.pyi +2 -2
- metaflow-stubs/plugins/cards/card_cli.pyi +5 -5
- metaflow-stubs/plugins/cards/card_client.pyi +3 -3
- metaflow-stubs/plugins/cards/card_creator.pyi +2 -2
- metaflow-stubs/plugins/cards/card_datastore.pyi +2 -2
- metaflow-stubs/plugins/cards/card_decorator.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/__init__.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/basic.pyi +3 -3
- metaflow-stubs/plugins/cards/card_modules/card.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/chevron/__init__.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/chevron/main.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/chevron/metadata.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/chevron/renderer.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/chevron/tokenizer.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/components.pyi +4 -4
- metaflow-stubs/plugins/cards/card_modules/convert_to_native_type.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/renderer_tools.pyi +2 -2
- metaflow-stubs/plugins/cards/card_modules/test_cards.pyi +2 -2
- metaflow-stubs/plugins/cards/card_resolver.pyi +2 -2
- metaflow-stubs/plugins/cards/component_serializer.pyi +4 -4
- metaflow-stubs/plugins/cards/exception.pyi +2 -2
- metaflow-stubs/plugins/catch_decorator.pyi +2 -2
- metaflow-stubs/plugins/datatools/__init__.pyi +4 -4
- metaflow-stubs/plugins/datatools/local.pyi +2 -2
- metaflow-stubs/plugins/datatools/s3/__init__.pyi +4 -4
- metaflow-stubs/plugins/datatools/s3/s3.pyi +6 -6
- metaflow-stubs/plugins/datatools/s3/s3tail.pyi +2 -2
- metaflow-stubs/plugins/datatools/s3/s3util.pyi +2 -2
- metaflow-stubs/plugins/debug_logger.pyi +2 -2
- metaflow-stubs/plugins/debug_monitor.pyi +2 -2
- metaflow-stubs/plugins/environment_decorator.pyi +2 -2
- metaflow-stubs/plugins/events_decorator.pyi +2 -2
- metaflow-stubs/plugins/frameworks/__init__.pyi +2 -2
- metaflow-stubs/plugins/frameworks/pytorch.pyi +4 -2
- metaflow-stubs/plugins/gcp/__init__.pyi +2 -2
- metaflow-stubs/plugins/gcp/gcp_secret_manager_secrets_provider.pyi +2 -2
- metaflow-stubs/plugins/gcp/gs_exceptions.pyi +2 -2
- metaflow-stubs/plugins/gcp/gs_storage_client_factory.pyi +2 -2
- metaflow-stubs/plugins/gcp/gs_utils.pyi +2 -2
- metaflow-stubs/plugins/gcp/includefile_support.pyi +2 -2
- metaflow-stubs/plugins/kubernetes/__init__.pyi +2 -2
- metaflow-stubs/plugins/kubernetes/kubernetes.pyi +18 -10
- metaflow-stubs/plugins/kubernetes/kubernetes_cli.pyi +12 -12
- metaflow-stubs/plugins/kubernetes/kubernetes_client.pyi +2 -2
- metaflow-stubs/plugins/kubernetes/kubernetes_decorator.pyi +14 -31
- metaflow-stubs/plugins/kubernetes/kubernetes_jobsets.pyi +82 -28
- metaflow-stubs/plugins/logs_cli.pyi +3 -3
- metaflow-stubs/plugins/package_cli.pyi +2 -2
- metaflow-stubs/plugins/parallel_decorator.pyi +47 -2
- metaflow-stubs/plugins/perimeters.pyi +2 -2
- metaflow-stubs/plugins/project_decorator.pyi +2 -2
- metaflow-stubs/plugins/pypi/__init__.pyi +2 -2
- metaflow-stubs/plugins/pypi/conda_decorator.pyi +2 -2
- metaflow-stubs/plugins/pypi/conda_environment.pyi +3 -3
- metaflow-stubs/plugins/pypi/pypi_decorator.pyi +2 -2
- metaflow-stubs/plugins/pypi/pypi_environment.pyi +2 -2
- metaflow-stubs/plugins/pypi/utils.pyi +2 -2
- metaflow-stubs/plugins/resources_decorator.pyi +2 -2
- metaflow-stubs/plugins/retry_decorator.pyi +2 -2
- metaflow-stubs/plugins/secrets/__init__.pyi +2 -2
- metaflow-stubs/plugins/secrets/inline_secrets_provider.pyi +2 -2
- metaflow-stubs/plugins/secrets/secrets_decorator.pyi +3 -3
- metaflow-stubs/plugins/storage_executor.pyi +2 -2
- metaflow-stubs/plugins/tag_cli.pyi +4 -4
- metaflow-stubs/plugins/test_unbounded_foreach_decorator.pyi +26 -3
- metaflow-stubs/plugins/timeout_decorator.pyi +2 -2
- metaflow-stubs/procpoll.pyi +2 -2
- metaflow-stubs/profilers/__init__.pyi +2 -2
- metaflow-stubs/pylint_wrapper.pyi +2 -2
- metaflow-stubs/runner/__init__.pyi +2 -2
- metaflow-stubs/runner/deployer.pyi +354 -0
- metaflow-stubs/runner/metaflow_runner.pyi +11 -11
- metaflow-stubs/runner/nbdeploy.pyi +54 -0
- metaflow-stubs/runner/nbrun.pyi +7 -7
- metaflow-stubs/runner/subprocess_manager.pyi +2 -2
- metaflow-stubs/runner/utils.pyi +25 -0
- metaflow-stubs/system/__init__.pyi +3 -3
- metaflow-stubs/system/system_logger.pyi +2 -2
- metaflow-stubs/system/system_monitor.pyi +2 -2
- metaflow-stubs/tagging_util.pyi +2 -2
- metaflow-stubs/tuple_util.pyi +2 -2
- {ob_metaflow_stubs-4.7.dist-info → ob_metaflow_stubs-4.9.dist-info}/METADATA +1 -1
- ob_metaflow_stubs-4.9.dist-info/RECORD +150 -0
- ob_metaflow_stubs-4.7.dist-info/RECORD +0 -145
- {ob_metaflow_stubs-4.7.dist-info → ob_metaflow_stubs-4.9.dist-info}/WHEEL +0 -0
- {ob_metaflow_stubs-4.7.dist-info → ob_metaflow_stubs-4.9.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,150 @@
|
|
1
|
+
metaflow-stubs/__init__.pyi,sha256=lmpKZtUH84Zj_FehcNzaFRQ-B4CbXewOZF8jgaeo8HE,117303
|
2
|
+
metaflow-stubs/cards.pyi,sha256=GWZ151T-mgGOxYMIE4856Vq25Qb5GjOSfaGTRgDSisI,9422
|
3
|
+
metaflow-stubs/cli.pyi,sha256=JB7b8HyosoFcqsYo75AmFD9g7ZM6qANZA8-i9QNIs_I,2970
|
4
|
+
metaflow-stubs/clone_util.pyi,sha256=NMYCYhmdtT2X9DLjbM8ebiSAX-kSzHhexRS6nIHcSxs,1090
|
5
|
+
metaflow-stubs/events.pyi,sha256=KG0SOwxa6tLAZecjobrOUXHuHsgbIWMdrp_J_POfLMU,3405
|
6
|
+
metaflow-stubs/exception.pyi,sha256=SOxgiPJsHPG1QMH18U7m_AAu2221jnm7q0PdXwiVGXs,2524
|
7
|
+
metaflow-stubs/flowspec.pyi,sha256=6Hl5SbxghFgQCD4Gy37zCTjdl9Y3N3jkXP8fdH1-I-g,10480
|
8
|
+
metaflow-stubs/generated_for.txt,sha256=TsSqoQxeIq9cF3maUD-sGBqoPqV-nEUfdoxUiMPU3Q4,43
|
9
|
+
metaflow-stubs/includefile.pyi,sha256=gSJfgBDnW0RWC1rIrFbWAdfoebT9kayV6ZbC3BDDt3g,18152
|
10
|
+
metaflow-stubs/metaflow_config.pyi,sha256=oTmZPE0iF1gVQ5YM_JJYQ6sdxf-WdbTNM71qvPyxYGQ,4558
|
11
|
+
metaflow-stubs/metaflow_current.pyi,sha256=XKqSqBZ7TLZvRZ9kTO1vF7TXayMbXe5EHe2Oxc66Xfk,9224
|
12
|
+
metaflow-stubs/multicore_utils.pyi,sha256=ScE1c4onh5j5V7fSfjKBjWbRUbIxQWMDXR6hi8VW9BU,2369
|
13
|
+
metaflow-stubs/parameters.pyi,sha256=sFFdFynXEBlVRiWkayeuQeQUCrNZN5VuQICKSiIpkYI,3710
|
14
|
+
metaflow-stubs/procpoll.pyi,sha256=IvAZRLS9OfVxlM2EjmLaeaI5pE5f7XgWetjBDensbq0,1249
|
15
|
+
metaflow-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
metaflow-stubs/pylint_wrapper.pyi,sha256=YmQoltP1jHJVKy24IsuMH1zyXmtgclfOviROBVns090,972
|
17
|
+
metaflow-stubs/tagging_util.pyi,sha256=GeU5bXhTaTDRiNeqvJLusToznYl_PgVKyhyyQC2aYXI,1485
|
18
|
+
metaflow-stubs/tuple_util.pyi,sha256=FSW6XDkl_leU_MbPnEzqRaUWErccuCGCB_OaoxGgm-c,562
|
19
|
+
metaflow-stubs/client/__init__.pyi,sha256=eYcjwwnJ_gKpcOmAn57iTELaEvG3kkoMTCT-Puu_XrA,28941
|
20
|
+
metaflow-stubs/client/core.pyi,sha256=sNlSgpNx0WRj53SGjuZ3yttZPq6DR1cY9RxyMW4iZ00,40855
|
21
|
+
metaflow-stubs/client/filecache.pyi,sha256=RjvJmDtdi4txRt5b_bB4mkAhnULDX9DUspmxuNiFRzw,3036
|
22
|
+
metaflow-stubs/metadata/metadata.pyi,sha256=86D0kx2Ad7VdrGgxDqXf2UBsoVyNGQpVXZr4IvrDOqI,12396
|
23
|
+
metaflow-stubs/metadata/util.pyi,sha256=c9Ce48Jm-9RJfUZAw4ZaaDs7vmdUBh0Stai0vZIsoZc,657
|
24
|
+
metaflow-stubs/mflog/mflog.pyi,sha256=zXhpBxwFXHoQLwx8nrwVNIFRRp59NWMc7EvVtbjxPR0,621
|
25
|
+
metaflow-stubs/plugins/__init__.pyi,sha256=MRFBNqAGIrWeg2un7DIvV44iDp8buFXR7p_NETNVOZ4,5998
|
26
|
+
metaflow-stubs/plugins/catch_decorator.pyi,sha256=KsGsvVioMmQa753seIBXJOo9jkOn-drZSqmrWD4qwpc,1826
|
27
|
+
metaflow-stubs/plugins/debug_logger.pyi,sha256=8Ovog6nCcyhxIgzoy6jng5iTLkyWDcmK13-DhCXzRlI,815
|
28
|
+
metaflow-stubs/plugins/debug_monitor.pyi,sha256=Ft3c_UVlWxBdPuvXw-QRxCtoHizsGq7zD9FE9DnAbA4,793
|
29
|
+
metaflow-stubs/plugins/environment_decorator.pyi,sha256=7gJujTAoHbLE1n_fx8xtIGob7cZbk3-Q3aQzuxEkxaw,714
|
30
|
+
metaflow-stubs/plugins/events_decorator.pyi,sha256=9lAM1QBk_e5zs07lh7uAOi6jDMK0aP9MwcdAOw_uyPI,1220
|
31
|
+
metaflow-stubs/plugins/logs_cli.pyi,sha256=glEbN9-OBBw4lCsyzlsHt5U5-I2f8CQqP8kTZCcrBsk,1348
|
32
|
+
metaflow-stubs/plugins/package_cli.pyi,sha256=CGmpXNxmnSUXbyJk8J2ORF5Db5GytAYNx05YVyVkDUo,453
|
33
|
+
metaflow-stubs/plugins/parallel_decorator.pyi,sha256=LYss7P8BdTjC7xZ4ykX3fT7SfWIUw2iZEhdGbk6eYqk,2457
|
34
|
+
metaflow-stubs/plugins/perimeters.pyi,sha256=yvl1sqNkw-kUwbDFiMPw5nyafiPx3genNCH3jp7RHF8,804
|
35
|
+
metaflow-stubs/plugins/project_decorator.pyi,sha256=D33_IRMRlZ55exw6d-UBm7IPGGx2JiRwY1Lu6khcy-c,1136
|
36
|
+
metaflow-stubs/plugins/resources_decorator.pyi,sha256=sw1LwV53YldbIcKs9W7-zQuj6xtjci28CDK25Nx1Ab8,609
|
37
|
+
metaflow-stubs/plugins/retry_decorator.pyi,sha256=V_R97xK13B6q9VI7XPs7K9irrsKMLnmszFDmWFRNjOQ,930
|
38
|
+
metaflow-stubs/plugins/storage_executor.pyi,sha256=7Ews19kv6b-jdUKEA9PECTR2fot5duggSX68gN0rd9M,1068
|
39
|
+
metaflow-stubs/plugins/tag_cli.pyi,sha256=yT10U4Z96TI_ZGfGvsTG8Y7375NonKFipM1aOISbGM4,10363
|
40
|
+
metaflow-stubs/plugins/test_unbounded_foreach_decorator.pyi,sha256=j-zp3oqoNz0qGEcqjV1VSqjsmI9qCSflgKj-xOpavNo,2325
|
41
|
+
metaflow-stubs/plugins/timeout_decorator.pyi,sha256=ey5TtOahusGZbfjHc4zMIpJmhEUZcIJhCOInz1HJYaQ,1401
|
42
|
+
metaflow-stubs/plugins/airflow/__init__.pyi,sha256=_bgzslnk19hnYXX4H7e3Cngf-qAQIJcRmmDRLdWEkqA,453
|
43
|
+
metaflow-stubs/plugins/airflow/airflow.pyi,sha256=x9XagcMZNT4_skbpUU0i6iN0lRqJeSsvXMqqBvH6STQ,5764
|
44
|
+
metaflow-stubs/plugins/airflow/airflow_cli.pyi,sha256=vykPInAKOHS6445KVSMHPnWAOCUmigQulPpYmj_ZaRo,3221
|
45
|
+
metaflow-stubs/plugins/airflow/airflow_decorator.pyi,sha256=2qIo62SOqZsgxdqWJ8RpDeR00cX0WR7KmL3PxnvBd20,1512
|
46
|
+
metaflow-stubs/plugins/airflow/airflow_utils.pyi,sha256=z-6UDBi-9BgczEHKLfIPgKs8O-W3mkLlcuB18QCCeUI,3053
|
47
|
+
metaflow-stubs/plugins/airflow/exception.pyi,sha256=C4bWEmkZdM1sW-MQW4q2ZuSA-IXsMPIOO_-N9AeQmNY,899
|
48
|
+
metaflow-stubs/plugins/airflow/sensors/__init__.pyi,sha256=Ojw1JtFvzB9Kbqh4ZyIhtw48RfzQh4R1VxIUTue1OgE,959
|
49
|
+
metaflow-stubs/plugins/airflow/sensors/base_sensor.pyi,sha256=j7B3PTfLEg5r8kgamhtm-SzECvhgP6IDAPD_0v1yhtQ,1834
|
50
|
+
metaflow-stubs/plugins/airflow/sensors/external_task_sensor.pyi,sha256=RFSVptmb0IqMiMRu98ZTQQH8kXSOGFeou5-B9MrZjnc,1697
|
51
|
+
metaflow-stubs/plugins/airflow/sensors/s3_sensor.pyi,sha256=Z-mMPLHteQbns67RnxCDixTuLZiC-PzVFnNXjyBpJdM,1617
|
52
|
+
metaflow-stubs/plugins/argo/__init__.pyi,sha256=3ZhKoG_60IeVxlLjzcg5s7BgjE0GR44D8h7j9kM9cow,453
|
53
|
+
metaflow-stubs/plugins/argo/argo_client.pyi,sha256=9fJkheQDWgb7Noe0V-7UBAm74iVHcFZpCUdoV-IGfSM,2405
|
54
|
+
metaflow-stubs/plugins/argo/argo_events.pyi,sha256=NdZ7cHL8sQAHUeLRi5Xgeiau7VsdtRbAyY4oU1wi5Yg,2782
|
55
|
+
metaflow-stubs/plugins/argo/argo_workflows.pyi,sha256=FxM3DCogcH0QnALlghQAJsceFq70GOYK9ZEM_n7bMp0,15277
|
56
|
+
metaflow-stubs/plugins/argo/argo_workflows_cli.pyi,sha256=wbQwiXhX9AODzECzIVQ9k9hYlS1XHc0ROszJ4JjJxzM,13239
|
57
|
+
metaflow-stubs/plugins/argo/argo_workflows_decorator.pyi,sha256=Jt_a0GHCM_WGBcRLek7yg-eCckBhDf-DZw_2f4rBV3s,13987
|
58
|
+
metaflow-stubs/plugins/argo/argo_workflows_deployer.pyi,sha256=XH1gu8uoI_0j0-a2qblCG5zmqGropOfRq6KAcbLEtNs,8119
|
59
|
+
metaflow-stubs/plugins/aws/__init__.pyi,sha256=TyjzOR3INEhwI2ca590Ep9iNGwYCxb9fSNruBA-UG6E,453
|
60
|
+
metaflow-stubs/plugins/aws/aws_client.pyi,sha256=2af6Ya01m9j2Gcubx2WnJXgazV0LBhQECboPLxXBWl4,829
|
61
|
+
metaflow-stubs/plugins/aws/aws_utils.pyi,sha256=J7hwIaRgXlKavplchB_idyEys_pvv9n3D5iSIsDx2Dk,3098
|
62
|
+
metaflow-stubs/plugins/aws/batch/__init__.pyi,sha256=tWxFN_UXpNUwRSHFYhyqkma5S5nbgkigV8JFvk93mNw,453
|
63
|
+
metaflow-stubs/plugins/aws/batch/batch.pyi,sha256=e1kbtGEkxp9CZMcSPnsk14-0AORlLnkHcjxawD_-y70,3606
|
64
|
+
metaflow-stubs/plugins/aws/batch/batch_cli.pyi,sha256=x2fbjGNeKonwS-KO5PPQEH8ZcVIsGqOsLcFkGrocujo,2318
|
65
|
+
metaflow-stubs/plugins/aws/batch/batch_client.pyi,sha256=rbsvXiMp8qMj3m4QqI_AonEMFAo3wNNTqwfShJXP8B8,3742
|
66
|
+
metaflow-stubs/plugins/aws/batch/batch_decorator.pyi,sha256=aei_g6Km6b2M5byTcBxuOR802zkjLtJH2w8Pj1vu2T4,4734
|
67
|
+
metaflow-stubs/plugins/aws/secrets_manager/__init__.pyi,sha256=hOA_0kPncP1U125Bul_mHfOw0smIu-TokYc7YFhANqM,453
|
68
|
+
metaflow-stubs/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.pyi,sha256=55q7WeViTKET6VdBk67NpuILtwmLsLbS-2XEd5kMMaA,3226
|
69
|
+
metaflow-stubs/plugins/aws/step_functions/__init__.pyi,sha256=S3N5xaFAm90iSPICFvjN3GpYMwElMKxGT9qvdmRy6So,453
|
70
|
+
metaflow-stubs/plugins/aws/step_functions/dynamo_db_client.pyi,sha256=hGZogd5QKMsMpOpHmNMIVK964HmF7Yka_R3lpLY5_fA,875
|
71
|
+
metaflow-stubs/plugins/aws/step_functions/event_bridge_client.pyi,sha256=lEIzLkc6VeXJMXjRyCkJsquqQBczrE8De8GLvHggTpc,798
|
72
|
+
metaflow-stubs/plugins/aws/step_functions/production_token.pyi,sha256=-XQZxp8WgTgNxWEZVlUztfmHA518ndWTNTm8beMV9QQ,596
|
73
|
+
metaflow-stubs/plugins/aws/step_functions/schedule_decorator.pyi,sha256=6PTUvzv1Ml7hY1P0fL_r25WvhXttdWwZqSt0ioSrSck,720
|
74
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions.pyi,sha256=kun3OB4gbKxpDD2YKPjcI7jNFUk-qNuMPGAynroDq6E,6526
|
75
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_cli.pyi,sha256=5GhKKlqo6v5mSPAL2_Q-nTKsS965_9vIqJqHiN9i2U8,5147
|
76
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_client.pyi,sha256=toN-2-V-9DNFptNmYXccF5GxY0tx4VbqlCLkgo5ZJ1A,1085
|
77
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_decorator.pyi,sha256=KdPiJupQ1BAzWuEmocv0n3sur7d9ElCpz6lsQnbxTcc,1759
|
78
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_deployer.pyi,sha256=xPnXgbDOtt7qjzYXHS07u25o4kvwc_tnDygGpYivrQA,7427
|
79
|
+
metaflow-stubs/plugins/azure/__init__.pyi,sha256=Ggx3W2ZF4_Fmli7K6dFPovtXEPU2sgkXlkyhd-iP1C8,493
|
80
|
+
metaflow-stubs/plugins/azure/azure_credential.pyi,sha256=7D67FgQkQQVfPaA-n4cIGUXXMNS5wPBzmRetZ7sQ3FE,1067
|
81
|
+
metaflow-stubs/plugins/azure/azure_exceptions.pyi,sha256=WOHT1wZZ8n-cvZ8knqpK-YRI1vymVqHZoUOHCI-n-tM,975
|
82
|
+
metaflow-stubs/plugins/azure/azure_secret_manager_secrets_provider.pyi,sha256=qj_ZGFjaLkVAVIoBXibxzW7458ehkeMg5uSj1h5ne7k,1933
|
83
|
+
metaflow-stubs/plugins/azure/azure_utils.pyi,sha256=ZZ_UNyZnNuzlHxDNvU4-6F37C86vaMRx843g54ods98,2513
|
84
|
+
metaflow-stubs/plugins/azure/blob_service_client_factory.pyi,sha256=HcgInlcmxYhXeZxMparuhT0mt_I0KHGoAJFuZLsZKxs,1782
|
85
|
+
metaflow-stubs/plugins/azure/includefile_support.pyi,sha256=LoSZ_3Qujq2oTB_xL03MXb5CKaXHwi90ASUGhD_3KjE,1748
|
86
|
+
metaflow-stubs/plugins/cards/__init__.pyi,sha256=f_U5iS_QqR5nmRt1AKyI_fssKX1fuWFSN4ZHoDyQyvs,453
|
87
|
+
metaflow-stubs/plugins/cards/card_cli.pyi,sha256=mm2SYGpIH9HR4yg-dnOf7Q4-IOywEZlN7YGxWPsmKe8,18088
|
88
|
+
metaflow-stubs/plugins/cards/card_client.pyi,sha256=RwPj5omNnuoTr87OqXn2Ogj-cp1LTydfxDmxLy9m1Dw,5396
|
89
|
+
metaflow-stubs/plugins/cards/card_creator.pyi,sha256=Bg72Kn_STB_Rbw90gjh1Wl0XRpvBVw9ZOshLbdhYqMA,969
|
90
|
+
metaflow-stubs/plugins/cards/card_datastore.pyi,sha256=Tj_uS7VBeuEEIFXkMrhIL1OhY6EqZgkIoiYNG27Gi8E,2942
|
91
|
+
metaflow-stubs/plugins/cards/card_decorator.pyi,sha256=bhx_hMT9-6HZ5WAOfCmFmBXxks-3DwhPEqFppgyciMI,4258
|
92
|
+
metaflow-stubs/plugins/cards/card_resolver.pyi,sha256=e1q-w-9JSCCXORN9m5dR095ITbN2fgj_-sNHgAgGRAM,1975
|
93
|
+
metaflow-stubs/plugins/cards/component_serializer.pyi,sha256=KYrwPkZC98bXB95coU-43rWfs3EJNsfIWeEy62vE2tQ,6789
|
94
|
+
metaflow-stubs/plugins/cards/exception.pyi,sha256=o5WcA1I6BtvvYreYWzXTHmel2JTC_42cIdJkvvA96sE,2244
|
95
|
+
metaflow-stubs/plugins/cards/card_modules/__init__.pyi,sha256=EM-aSXQgRieEAoy7PMDJlZX5WGamuXu51cZuKqPVPa8,1871
|
96
|
+
metaflow-stubs/plugins/cards/card_modules/basic.pyi,sha256=EW_F317GSA3oDlLJhkuBtqP6EjbbYG0AHyvW0gITjrY,7858
|
97
|
+
metaflow-stubs/plugins/cards/card_modules/card.pyi,sha256=tFHvhEPFJ0EVf7pxiNy2VG502fj582W0Cpe2Y4v0TRE,1816
|
98
|
+
metaflow-stubs/plugins/cards/card_modules/components.pyi,sha256=3o3xLc-1UrYi84WFnWkRbqgAX7T6oUMvzJbQOr6ISoI,7674
|
99
|
+
metaflow-stubs/plugins/cards/card_modules/convert_to_native_type.pyi,sha256=GQIkKXpCRVm_EX3PwHj7GFa84_VzmTW3U1bLtfDk0YM,1313
|
100
|
+
metaflow-stubs/plugins/cards/card_modules/renderer_tools.pyi,sha256=3TkrwsiilAbLGEPRHBCxnBO3q_B7CQfWMu-9hPTiCdc,951
|
101
|
+
metaflow-stubs/plugins/cards/card_modules/test_cards.pyi,sha256=1hv8Iyqn8gBvyKblwWbyhWEbUUgRSf3tu4GiJlANrEA,4629
|
102
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/__init__.pyi,sha256=tjJ2fUbabQr2KjQIIjYfTvFf1fGrkKlSuwntS4fbokc,2711
|
103
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/main.pyi,sha256=BA72_Y-Ziadh8I7Sh7baX7Lv4PbNEi6wjauRfR9tReQ,2667
|
104
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/metadata.pyi,sha256=MUzrH7GEhxQNPRpUbC93wa87NTs4JHvvbXvFyrY3iHo,467
|
105
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/renderer.pyi,sha256=eF_1QGcqOP0L5CYEl-siQBIMkHyhtrM-Tprl3E-ZFSk,3525
|
106
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/tokenizer.pyi,sha256=r64EIYdcSd8f05uqfO-JFjK3K_L-6d0fZvLH8xP4wDM,1913
|
107
|
+
metaflow-stubs/plugins/datatools/__init__.pyi,sha256=u_1x8ixOzReGBRujNXV9O3jNBKFraC40lJnnzvzTbFY,12909
|
108
|
+
metaflow-stubs/plugins/datatools/local.pyi,sha256=sds1vVDWnfUZe7FI1b3MJkcg7T7UnuVj-J_Mrj-v86Y,2193
|
109
|
+
metaflow-stubs/plugins/datatools/s3/__init__.pyi,sha256=3menLtcObbddJxLn5JbGuBQNNb_kjcHn6sgmqpY4aQg,20310
|
110
|
+
metaflow-stubs/plugins/datatools/s3/s3.pyi,sha256=2lJ0WDy2t9aXLlhQEMgXSMJrgIaCWFw49j-TzCJuahs,29154
|
111
|
+
metaflow-stubs/plugins/datatools/s3/s3tail.pyi,sha256=ZxCixIwHGn5v4-YRTHd7EABF9fuclAQF9aVIE4p6siY,965
|
112
|
+
metaflow-stubs/plugins/datatools/s3/s3util.pyi,sha256=eOpvHvZNqaKmUZcRMH752I2A2fC68Xu2UT1oj6eScBc,1123
|
113
|
+
metaflow-stubs/plugins/frameworks/__init__.pyi,sha256=p2Zqhl1_Yyoz-l3TY5MwYKePW1GhK4ldrmDtxQdrCNE,453
|
114
|
+
metaflow-stubs/plugins/frameworks/pytorch.pyi,sha256=hZVTgCTdlEUP39-FRRGhfkd8-WbQl67ff2W4O4dTFB0,1787
|
115
|
+
metaflow-stubs/plugins/gcp/__init__.pyi,sha256=w1wRRiY_sNjOQeGBVfA9eqe2GNF-attGnNsjTdlmxN8,508
|
116
|
+
metaflow-stubs/plugins/gcp/gcp_secret_manager_secrets_provider.pyi,sha256=xAxghYvDeBln1Q4m-3awWIz7uMfgHRi38EEDyCH4y7Y,3090
|
117
|
+
metaflow-stubs/plugins/gcp/gs_exceptions.pyi,sha256=5D3_cJ-z_wBNQjdPGhiV2gJ0AeMtYRooHfrceBA6Hsk,772
|
118
|
+
metaflow-stubs/plugins/gcp/gs_storage_client_factory.pyi,sha256=Sg7iz07hTD6HY0cCng0b0MShl3YcsJ6SnDjBH2qy040,798
|
119
|
+
metaflow-stubs/plugins/gcp/gs_utils.pyi,sha256=mT_csBdUb4HwRISG8aXKTKZZMKANc8S8viyGobVxJtY,1184
|
120
|
+
metaflow-stubs/plugins/gcp/includefile_support.pyi,sha256=ktYjTw9HWLeLSBhPpp3_r9OXJzuv88DApc53_dpLsVQ,1722
|
121
|
+
metaflow-stubs/plugins/kubernetes/__init__.pyi,sha256=Aw6Ta4Nz00UaG60obZFiJAgOBxjuuwD9ptzwp9w8C0w,453
|
122
|
+
metaflow-stubs/plugins/kubernetes/kubernetes.pyi,sha256=5s1_SffeBaxZcmsrMChD5wvN1gaWFPG29Iun3zmE3YM,4299
|
123
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_cli.pyi,sha256=nju2Xm-FwcDz_XJYDlnxKoUZm493M06r_pu4A5SQf-g,3758
|
124
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_client.pyi,sha256=ga-jq-zPoqmvo9Av5DM9-U_UwO44btw0tgpsnYOd5NI,1022
|
125
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_decorator.pyi,sha256=qAAmPjC_7z-IsrdS0TSyKatjTp2Z_xsFU2vokY4VLoI,5053
|
126
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_jobsets.pyi,sha256=GESCS4esxPsCJe24LYgL0-sDYdon3i4Z1WsVRQIWtjI,4839
|
127
|
+
metaflow-stubs/plugins/pypi/__init__.pyi,sha256=H6LGDEMwnD5ZX2mUFqj3OP9LYC4kN5XRE1qcaeJ1eH0,627
|
128
|
+
metaflow-stubs/plugins/pypi/conda_decorator.pyi,sha256=hqilBDSlurTKtEUAqUryGCyttURBouuIora4GMcY2ik,2070
|
129
|
+
metaflow-stubs/plugins/pypi/conda_environment.pyi,sha256=GtGcevShKGetlKQFXgNw7t4GCtIEKyWMK11m3oL2wxU,2333
|
130
|
+
metaflow-stubs/plugins/pypi/pypi_decorator.pyi,sha256=3JE9RMn78m1--PZE6qrXaXFWeHVm6_C7DHe-YPjBgfY,905
|
131
|
+
metaflow-stubs/plugins/pypi/pypi_environment.pyi,sha256=E3_6Xqb3yf4UFQCG9EHX5WJOD71iyS5Xnsrd6InRBgQ,1651
|
132
|
+
metaflow-stubs/plugins/pypi/utils.pyi,sha256=pFO2u6PuhTB-HlEV1fX9TLw991IH1KpE4oAbSqSZ_Q4,771
|
133
|
+
metaflow-stubs/plugins/secrets/__init__.pyi,sha256=sDeqCiA2N4nmDCbAxN30bZuo9n1Z0uJNIk91zKDVY5Q,812
|
134
|
+
metaflow-stubs/plugins/secrets/inline_secrets_provider.pyi,sha256=q9i_NdtzEj5Fb-drB9zKwn_VVtvvO-RwgbRTx_BTsGI,1114
|
135
|
+
metaflow-stubs/plugins/secrets/secrets_decorator.pyi,sha256=w_xfkOY4euop87GWu3kDweuTcODFFHdr4E-fb4OHzUQ,2021
|
136
|
+
metaflow-stubs/profilers/__init__.pyi,sha256=9iFQ3WsSePTMAJEKtn1nE4T9p1-hbXtmpPRd40_0eA0,654
|
137
|
+
metaflow-stubs/runner/__init__.pyi,sha256=RFKG7Q_moLjIQVW9BPyjLVRuNbR1TP_Pry5E8HBAVkQ,453
|
138
|
+
metaflow-stubs/runner/deployer.pyi,sha256=mYyOrJj0mF6uCUkfrYgxH0eOnv2Fa-1EzPTU104ihg4,12627
|
139
|
+
metaflow-stubs/runner/metaflow_runner.pyi,sha256=YTx_lj2AQSBEa5ldnehVRR5oqL82mTQstN-YjCEkYAY,23267
|
140
|
+
metaflow-stubs/runner/nbdeploy.pyi,sha256=MKPxJwe61aSiru3gfAboTdp3jOVumxeOrhP-2jKWKHI,1787
|
141
|
+
metaflow-stubs/runner/nbrun.pyi,sha256=8GzNaaU6OxbFC-XBJ7s98HOhgd4O_9Nip7uDK9_blfo,7486
|
142
|
+
metaflow-stubs/runner/subprocess_manager.pyi,sha256=1Zvsc4gcU-5Ynn2puMcmX1BWs3nqOtPwXMn2Oj7mvh0,8577
|
143
|
+
metaflow-stubs/runner/utils.pyi,sha256=9iXTzyRYF8Si3e5k044hQ9vULTx5SQefcnUPVAZaV6k,800
|
144
|
+
metaflow-stubs/system/__init__.pyi,sha256=u5FN0ugpRboRW8AvlIy8enIQy5GZLIiPDA6l3GdXYNs,3383
|
145
|
+
metaflow-stubs/system/system_logger.pyi,sha256=mMNfDChlFPMFNfFJM_wk7ZJPK5q1U8Onp4d-Sy9rE6s,1876
|
146
|
+
metaflow-stubs/system/system_monitor.pyi,sha256=DAF05zVuW45hwIXdLRlYoZMSHiLSVkxS_aW_RqUE-9w,2017
|
147
|
+
ob_metaflow_stubs-4.9.dist-info/METADATA,sha256=jpWsYuEyB_58kCUUQotASaN1iN7r2668HsXj6QJx7pc,651
|
148
|
+
ob_metaflow_stubs-4.9.dist-info/WHEEL,sha256=bb2Ot9scclHKMOLDEHY6B2sicWOgugjFKaJsT7vwMQo,110
|
149
|
+
ob_metaflow_stubs-4.9.dist-info/top_level.txt,sha256=vEJN-gFv184nGYaYbnS_0-Q3cmXuRw3iT9l3yyYb1JA,15
|
150
|
+
ob_metaflow_stubs-4.9.dist-info/RECORD,,
|
@@ -1,145 +0,0 @@
|
|
1
|
-
metaflow-stubs/__init__.pyi,sha256=Icq7zgreCaxQR96SS4Hz_bmfLGC7p67My7NS-2X1jVw,115443
|
2
|
-
metaflow-stubs/cards.pyi,sha256=Bzj-GBo1r8AhCrkunf7w0Xps3FEAvQNWJ3-FcGpavdQ,9422
|
3
|
-
metaflow-stubs/cli.pyi,sha256=fJ6H9K_B_uxpJ4UbQlLGdLlvxd_eYggoiXUf_Mz_vU8,2970
|
4
|
-
metaflow-stubs/clone_util.pyi,sha256=BkoJxEM1dHT1ogzxgUkBKgSaoj2cmenCv2rNnluPJQA,1090
|
5
|
-
metaflow-stubs/events.pyi,sha256=ngv3lvqgcKN7VeROcHDj7LcIuUiCkcKRea92cNIEaQ8,3405
|
6
|
-
metaflow-stubs/exception.pyi,sha256=8A2QuJ1j715XFBV5L9QhIZVzhQeHQutTdLx2eq5Y1HA,2524
|
7
|
-
metaflow-stubs/flowspec.pyi,sha256=r4QWLTFaCTyS3wAsdh-qB25hj1v8Dn-Ndp5-h1tDAvY,10480
|
8
|
-
metaflow-stubs/generated_for.txt,sha256=aH8v_qmPM6k_uIV914nWU4sKAPEq5CBUbM9LHTl1cxI,42
|
9
|
-
metaflow-stubs/includefile.pyi,sha256=4lbNPqOh760EzZx9sqjjZrF2p6X1Xj-gr75SNm9oy58,18152
|
10
|
-
metaflow-stubs/metaflow_config.pyi,sha256=d--a8AEsxzsaAv2pXym1L1DgrKdPUCN6rnSJrx68r1w,4558
|
11
|
-
metaflow-stubs/metaflow_current.pyi,sha256=JFb35i9rDZwwKERhCb-DL3oldQe66bGfGBsmLcBrz_k,8475
|
12
|
-
metaflow-stubs/multicore_utils.pyi,sha256=WuVTPCQsn7Rot5_dteqiqnxndZlhcPEl1iI1NAskguM,2369
|
13
|
-
metaflow-stubs/parameters.pyi,sha256=DoDWZqwyhg3BJRzTMcyxUbU51QqEnHw9YLJQrpUG0ls,3710
|
14
|
-
metaflow-stubs/procpoll.pyi,sha256=bm0jSagDal9WlXXQJ9mZFLNCHvSYTAL8W4gIkxxOnJk,1249
|
15
|
-
metaflow-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
metaflow-stubs/pylint_wrapper.pyi,sha256=GsiIfOfDb2EH2t7EHkskyP2X2e-hql4ttWz4GwYMQlo,972
|
17
|
-
metaflow-stubs/tagging_util.pyi,sha256=M9SKYH8FlqOzaZ9sPOWjHD00waqlRLlpBREuTUlFSF0,1485
|
18
|
-
metaflow-stubs/tuple_util.pyi,sha256=sMIfcgTsMxhXb6H7o-LruJI4zJCUcTKON6Atxhs0pYw,562
|
19
|
-
metaflow-stubs/client/__init__.pyi,sha256=QnGbMHm9B93GRItnJ-qyAiSVT6SE63-aUd21g3V5UI4,28941
|
20
|
-
metaflow-stubs/client/core.pyi,sha256=_0LxSSuYE82n5WD2JEqLi-PSOJZsKKQdpQ6vdA74kq8,40855
|
21
|
-
metaflow-stubs/client/filecache.pyi,sha256=t5GS4rqtEj6G7tSkyLGhRK7sluMUp93bO2seeThUx1w,3036
|
22
|
-
metaflow-stubs/metadata/metadata.pyi,sha256=qeUproq6oZhxVtCxsscANyQMSjbxnYRfWPQdBG14cZg,12396
|
23
|
-
metaflow-stubs/metadata/util.pyi,sha256=UtbkNFVoAa4WYfwTUmSySwScSY9WHzsEkIPgqMx4pps,657
|
24
|
-
metaflow-stubs/mflog/mflog.pyi,sha256=pYXVXsTvRFA5Zgwr_u_B4N9fmdG3OELNUP1UZAGkOrI,621
|
25
|
-
metaflow-stubs/plugins/__init__.pyi,sha256=VoPW8fuNk5ugjq-kCP9NNpuSDz6Ywn62Go4uezcuE4s,5931
|
26
|
-
metaflow-stubs/plugins/catch_decorator.pyi,sha256=VDQZlko18GRMsYPNa_CztY-j8gNbiiHSXf24_KSrWtc,1826
|
27
|
-
metaflow-stubs/plugins/debug_logger.pyi,sha256=W27B0Vr51cD3OdJ7fdwqk6nQbtlxn71FGxn9gNC728k,815
|
28
|
-
metaflow-stubs/plugins/debug_monitor.pyi,sha256=WwFjh_C9JRLBiRFJF3AhT1-XrphzVky8jp58WnE-Ea0,793
|
29
|
-
metaflow-stubs/plugins/environment_decorator.pyi,sha256=Jw8RJF6FKnql6l2_4JhgZptB5jOx1kLhvzpZb4e9E7s,714
|
30
|
-
metaflow-stubs/plugins/events_decorator.pyi,sha256=DOSWOo7_a7oIVDxDWDGsU4QrWBKbVaQV_AoQ3_ukzxM,1220
|
31
|
-
metaflow-stubs/plugins/logs_cli.pyi,sha256=OhYzt5QVv4p8fMusK0QQ9QU1qQWBxo2IrYoD1IOcGb8,1348
|
32
|
-
metaflow-stubs/plugins/package_cli.pyi,sha256=8uLn-joeeT9NgvutJ23G-4LX9GC_lCIvLI0OyW7EMJo,453
|
33
|
-
metaflow-stubs/plugins/parallel_decorator.pyi,sha256=sEUHm6Uq4tMG51ql4KJ9GUNKLLNbWiHdkQpum3kjUEc,1248
|
34
|
-
metaflow-stubs/plugins/perimeters.pyi,sha256=RMTIeiaAO6wxdOwZaq4jv0xvzSsRVXp5LMqQghKDyUc,804
|
35
|
-
metaflow-stubs/plugins/project_decorator.pyi,sha256=BNcQrKfxWiTT9sAZ9qb0CWLoYSHmLJx2hAnLaC650Io,1136
|
36
|
-
metaflow-stubs/plugins/resources_decorator.pyi,sha256=x9lZN0NyGt6I-4DDyEMPJTM4v7jwzQCOUSYkrkDyr0k,609
|
37
|
-
metaflow-stubs/plugins/retry_decorator.pyi,sha256=zNzAZtA3U0eVksiJESLi1PwDwqBe5HKFiaIR7nZ9La8,930
|
38
|
-
metaflow-stubs/plugins/storage_executor.pyi,sha256=y0odwcPHVYgs5lcotvAnMqEJ1JTe_6xzxhzSpsaxFfs,1068
|
39
|
-
metaflow-stubs/plugins/tag_cli.pyi,sha256=3anWLlyRVkTdvxUuIYwiEY9pfhv9WbUQEJ17YLER-LY,10363
|
40
|
-
metaflow-stubs/plugins/test_unbounded_foreach_decorator.pyi,sha256=eaXMaMIi0yt2khHj2DeTGqlukkUmkYvJMg2UmB4kmM8,1672
|
41
|
-
metaflow-stubs/plugins/timeout_decorator.pyi,sha256=MEg2o3PWsJ2vzu0oZXwJgFt7PKkPq35Pa02TNMd6Fzw,1401
|
42
|
-
metaflow-stubs/plugins/airflow/__init__.pyi,sha256=6VeXSDwCzdmgSa53eVHxVnV8S6-1IotRg3AakpF5Qvo,453
|
43
|
-
metaflow-stubs/plugins/airflow/airflow.pyi,sha256=KmNZRx_Hwackfi9wKZJ1KKEY4CArpNWC7qvqEFqSsZg,5398
|
44
|
-
metaflow-stubs/plugins/airflow/airflow_cli.pyi,sha256=SqzE1UBGMLxvTXJ7Ai0oUEM0-0T-WGMQaL6ErwSEnEI,3221
|
45
|
-
metaflow-stubs/plugins/airflow/airflow_decorator.pyi,sha256=gZFS2f8K8pb5EUBUDj8p7psIk1Z76aeAM-Y30CYjWR4,1512
|
46
|
-
metaflow-stubs/plugins/airflow/airflow_utils.pyi,sha256=eoLoUj9IsfVG6UlbvH_hjrxh6bdHfHnxHQl4fsrAinI,3053
|
47
|
-
metaflow-stubs/plugins/airflow/exception.pyi,sha256=-jnNSaoWABiAyhMCgVl-LGBkIthPXlt53aEh4_G3jJk,899
|
48
|
-
metaflow-stubs/plugins/airflow/sensors/__init__.pyi,sha256=2zDuI47yOxSKyd0CRWYzvaxICzaiDAyrSrLtPF6XXZI,959
|
49
|
-
metaflow-stubs/plugins/airflow/sensors/base_sensor.pyi,sha256=WANDypk1QVEVIx9763sQfY3lIsL-K3v0g9MfITDInJI,1834
|
50
|
-
metaflow-stubs/plugins/airflow/sensors/external_task_sensor.pyi,sha256=NiBu9Hsopju0Wmhz4JMbD7sHS3cd4NivTxqFlwZfSZI,1697
|
51
|
-
metaflow-stubs/plugins/airflow/sensors/s3_sensor.pyi,sha256=Feprs_i0X4rwwvY9beOW_1zIGndI4mL7iXISF4B2Bis,1617
|
52
|
-
metaflow-stubs/plugins/argo/__init__.pyi,sha256=pFd5JvRSyGqKQP7VnKBzBP5btOY8-MNyIAwH68EKUjY,453
|
53
|
-
metaflow-stubs/plugins/argo/argo_client.pyi,sha256=RhYayvsaDZTqMGrFFu-ld6I_Bbr8OQ2uH4NFRVD_BHE,2405
|
54
|
-
metaflow-stubs/plugins/argo/argo_events.pyi,sha256=2uharH_jLM7v4wlx7j37Ojomxsg6glcjkTiFjyXmRKo,2782
|
55
|
-
metaflow-stubs/plugins/argo/argo_workflows.pyi,sha256=NmxT4s_FtO6d3N1Xf8RXPcFxV-oqmuQqrbHxlZoKCUY,14445
|
56
|
-
metaflow-stubs/plugins/argo/argo_workflows_cli.pyi,sha256=fn26GRwSYdCLSsSJO6zp39c5bWzwbp1437NmoJ-V0a8,5800
|
57
|
-
metaflow-stubs/plugins/argo/argo_workflows_decorator.pyi,sha256=ZmrAO9PTln44y5oq9ACZEPJz_CvZc_X4MSdZd7n5X44,5870
|
58
|
-
metaflow-stubs/plugins/aws/__init__.pyi,sha256=02Gjz3HYH-HHneTtZGhrGRoOwL7hnm2IWHWZRynCNUI,453
|
59
|
-
metaflow-stubs/plugins/aws/aws_client.pyi,sha256=zEstn1WUCflZHBXBUNgxgGHw_8J3q_QolFZNJVc3a1c,829
|
60
|
-
metaflow-stubs/plugins/aws/aws_utils.pyi,sha256=uvIirAwOAUWUDC0rLzC7mECBSAEU8sHo1xOJ-Gjeizc,3098
|
61
|
-
metaflow-stubs/plugins/aws/batch/__init__.pyi,sha256=n-aDyjrY-SdCxvWxB9wI6Z-HU_QInobTAxWPFFypmTU,453
|
62
|
-
metaflow-stubs/plugins/aws/batch/batch.pyi,sha256=Dw7piRc-GmYIZEekrTsfnHWUs4uJWVEhzETz7_jld4U,3606
|
63
|
-
metaflow-stubs/plugins/aws/batch/batch_cli.pyi,sha256=x-5H8D-qvDKvaAHBxR6S3mATa_28fRtmiQeu9ijrwJw,2318
|
64
|
-
metaflow-stubs/plugins/aws/batch/batch_client.pyi,sha256=mdPdq6-8onEkTEOZp_MOWkQxum6idIMZPCdgG38oXOQ,3742
|
65
|
-
metaflow-stubs/plugins/aws/batch/batch_decorator.pyi,sha256=4VNziFWCpvPGQ1tzYnuYsddSKeAkisPDxj0RyJlHwZw,4734
|
66
|
-
metaflow-stubs/plugins/aws/secrets_manager/__init__.pyi,sha256=gKkrZWkJkDmc4gohuuY8-Cf0ehtQ1HMdHn_snfo-wu4,453
|
67
|
-
metaflow-stubs/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.pyi,sha256=v8GSnCWcCzHT3r3ZogXnlTfmckTvY-7JaOtvg7vHbWg,3226
|
68
|
-
metaflow-stubs/plugins/aws/step_functions/__init__.pyi,sha256=JTJyfz-6borx2Oo9RNQuyZnafvPLuq1Y3h5pW6ejAqc,453
|
69
|
-
metaflow-stubs/plugins/aws/step_functions/dynamo_db_client.pyi,sha256=_ubfzsIYyDfCBtclC-MoVngJiTQVSrinSq0pJhCd1TA,875
|
70
|
-
metaflow-stubs/plugins/aws/step_functions/event_bridge_client.pyi,sha256=rh87ISZ0tU-C9LAY3_ordrc3NicQ-DbvOV28XyKzgPs,798
|
71
|
-
metaflow-stubs/plugins/aws/step_functions/production_token.pyi,sha256=GQ4XKBccTL4o5OXS3lAaOFuRtY5xiXe8jOWiEAnKvsE,596
|
72
|
-
metaflow-stubs/plugins/aws/step_functions/schedule_decorator.pyi,sha256=UBCSFDGTkx4uB9OgqKm3MdzmOXld8oUamR7NceJMffg,720
|
73
|
-
metaflow-stubs/plugins/aws/step_functions/step_functions.pyi,sha256=pNzG0eJ73mFUyu5IcdiBu0_EoMlHftVrK7K3sNyOjSY,6526
|
74
|
-
metaflow-stubs/plugins/aws/step_functions/step_functions_cli.pyi,sha256=rFtEoC_SxW_YRDwwcYgT3Zt7kOEMOQv-zm0bf8Do4_4,4441
|
75
|
-
metaflow-stubs/plugins/aws/step_functions/step_functions_client.pyi,sha256=Rcxb5KUa1BFCYc26X9yzMxaoXM4qsjXG_OQoeGByJZs,1085
|
76
|
-
metaflow-stubs/plugins/aws/step_functions/step_functions_decorator.pyi,sha256=ub89Nfyzhlb0EU6IQKG9tzMVgkKfPoHrnzLZtyX969E,1759
|
77
|
-
metaflow-stubs/plugins/azure/__init__.pyi,sha256=WjYjlO2ibymHqMyL2OnyNg-0yXtdPkJo59PrgoptgF8,493
|
78
|
-
metaflow-stubs/plugins/azure/azure_credential.pyi,sha256=lAKf1VxMI5lhfSLvqdFNe4qZw6xYnRJAgvheyDRIsc8,1067
|
79
|
-
metaflow-stubs/plugins/azure/azure_exceptions.pyi,sha256=U7SMhSuR1lwP9YsTVEb7JAgBUEkk6xN4VdJ6wV7-O5c,975
|
80
|
-
metaflow-stubs/plugins/azure/azure_secret_manager_secrets_provider.pyi,sha256=H2x_SbsvykHdRIW941sPUrE7dy1CXyztugrGTDr30mg,1933
|
81
|
-
metaflow-stubs/plugins/azure/azure_utils.pyi,sha256=BNvw15qqd0kdN0LBgnwvNasPHZy3JCB_FoGrhwptPSs,2513
|
82
|
-
metaflow-stubs/plugins/azure/blob_service_client_factory.pyi,sha256=AIGsnYt8fSCcTH2Gcl0l2lHiaFbzL9CsrkwxdUVkh2w,1782
|
83
|
-
metaflow-stubs/plugins/azure/includefile_support.pyi,sha256=oZSDMppvRowD4oeAG6JNlslpMMI0Vz-X8WDuyR-3pQ4,1748
|
84
|
-
metaflow-stubs/plugins/cards/__init__.pyi,sha256=9kEEvOOprKX3qs4VB_n4uFviH5M8Eq2SLDXI7FUisFM,453
|
85
|
-
metaflow-stubs/plugins/cards/card_cli.pyi,sha256=ygzwM2397aCJ1ccbizymK5-41yze14akwFM0XZeQjUY,18088
|
86
|
-
metaflow-stubs/plugins/cards/card_client.pyi,sha256=4C83IOKQ6OYOZAzvk3TFcktSFx75fmYU1IO3JssbpVA,5396
|
87
|
-
metaflow-stubs/plugins/cards/card_creator.pyi,sha256=rsFaB771zTY0Floqq1kuBG8XrA3bkEX0Rq5Fm4JQqBc,969
|
88
|
-
metaflow-stubs/plugins/cards/card_datastore.pyi,sha256=XYjv3ZHPZYqYvTrZIaSUwwssOV6SoYPMMlwQ6BbMMm0,2942
|
89
|
-
metaflow-stubs/plugins/cards/card_decorator.pyi,sha256=iXmb2QfZg1KaUBbb-B_Qk58TtkymT4eSyhj3PmZ4pB0,4258
|
90
|
-
metaflow-stubs/plugins/cards/card_resolver.pyi,sha256=lUgmNG0AQ2mwC0oBzQQE3R5mAIPd5M2FGqAvVujcCZY,1975
|
91
|
-
metaflow-stubs/plugins/cards/component_serializer.pyi,sha256=EGKE7voaAwaa_fEU08JhblN75z3u3bqQ0HGBncSdc18,6789
|
92
|
-
metaflow-stubs/plugins/cards/exception.pyi,sha256=jNaKdbArRhfdjmRGvCSJ4XvOh0aWhXbp2vVCtiVu9xc,2244
|
93
|
-
metaflow-stubs/plugins/cards/card_modules/__init__.pyi,sha256=-6ryvi3fR6pS1txaHa_Rqg8QnjxFMjQ4ulPApXzmWjQ,1871
|
94
|
-
metaflow-stubs/plugins/cards/card_modules/basic.pyi,sha256=x81WfU9rSyLWvJNZh-coW6uSLoEvEtWrktI53huiYZ0,7858
|
95
|
-
metaflow-stubs/plugins/cards/card_modules/card.pyi,sha256=3c15nlX6AxvO2sxguLInWFVjzJk8QmcPeCU5xzTGkRc,1816
|
96
|
-
metaflow-stubs/plugins/cards/card_modules/components.pyi,sha256=5tXeYRV4V5ZkHOrB3a4Rbu-pEk7HdBiG-C_GeIPuTdo,7674
|
97
|
-
metaflow-stubs/plugins/cards/card_modules/convert_to_native_type.pyi,sha256=5DXtlAnlRk462E2nVRvZRChW2FtT2XS8dMjuMzD5lQI,1313
|
98
|
-
metaflow-stubs/plugins/cards/card_modules/renderer_tools.pyi,sha256=QHOYsqVEGUx5oO23eWYY1JKV8uufnooR8rfTQcDhawM,951
|
99
|
-
metaflow-stubs/plugins/cards/card_modules/test_cards.pyi,sha256=3Hi5CXEPH55PrLIch4vFEDDmou8B2GcjSruyVHQ79-8,4629
|
100
|
-
metaflow-stubs/plugins/cards/card_modules/chevron/__init__.pyi,sha256=JjPyFtAVce1Llso2rTxLBVvVf5pb9abNyIfTfPkHxmk,2711
|
101
|
-
metaflow-stubs/plugins/cards/card_modules/chevron/main.pyi,sha256=zdbJWlJcceMc3pkXzLcfGvMz2MgNfhtVnLoI_ySnk7o,2667
|
102
|
-
metaflow-stubs/plugins/cards/card_modules/chevron/metadata.pyi,sha256=0MSNcasdnItxy1iMi95_QT9xMnvk3whK_-bFF5SQ47g,467
|
103
|
-
metaflow-stubs/plugins/cards/card_modules/chevron/renderer.pyi,sha256=Q4ChIz-V0aakWUfyIQlKIJblaM5KfvAr7dmMOWF9bVk,3525
|
104
|
-
metaflow-stubs/plugins/cards/card_modules/chevron/tokenizer.pyi,sha256=Ea2X1j9Ip2OyiYq9VxH2c7CTjzY4poiGr-fClgnvgvQ,1913
|
105
|
-
metaflow-stubs/plugins/datatools/__init__.pyi,sha256=eMTPswAC2re1YtjOsUp2V7_Ezq4vE0cDfpVCqpxLtJY,12909
|
106
|
-
metaflow-stubs/plugins/datatools/local.pyi,sha256=I2C1agcEM8kp4bmvpUBMSp2pWFgAtIdBl4MX1sfxZLU,2193
|
107
|
-
metaflow-stubs/plugins/datatools/s3/__init__.pyi,sha256=jyWEVcY4k-gCQafDcpNAq7pSmjwiGrTK5bBxL4FmHW0,20310
|
108
|
-
metaflow-stubs/plugins/datatools/s3/s3.pyi,sha256=XlwKUaq0AzSWBYy0evzC4V6d8avqO5ro-Vu_vijKkbE,29154
|
109
|
-
metaflow-stubs/plugins/datatools/s3/s3tail.pyi,sha256=al9DVazx_mMvtqW7MoejbPL9y7Txm3XWC5zX2MtAkiA,965
|
110
|
-
metaflow-stubs/plugins/datatools/s3/s3util.pyi,sha256=PMre1nKqRhAQvmf4EbBPpuYRa3l9KBBWIIUrzy6oK9k,1123
|
111
|
-
metaflow-stubs/plugins/frameworks/__init__.pyi,sha256=bnn7PLJurdeKHeSb-DRhhuess-TCATQE-mDbcRIP7kE,453
|
112
|
-
metaflow-stubs/plugins/frameworks/pytorch.pyi,sha256=z5jM1aDIQFuJKJN5GXDLQW5Ygg2-euVhClKK6CED2aM,1622
|
113
|
-
metaflow-stubs/plugins/gcp/__init__.pyi,sha256=984KCYl-P2J5016AKfvwasUwS1cXWv3L4QR9EkoJyOg,508
|
114
|
-
metaflow-stubs/plugins/gcp/gcp_secret_manager_secrets_provider.pyi,sha256=vDm4rRV_lKsuSwQJI2T5Fmt4QKBAHYbnB4Vq-sAdNGU,3090
|
115
|
-
metaflow-stubs/plugins/gcp/gs_exceptions.pyi,sha256=tDXsipoPOBlR95Mxz10CEejLuzaQNU9OAMRQ2IdfEWI,772
|
116
|
-
metaflow-stubs/plugins/gcp/gs_storage_client_factory.pyi,sha256=lSmng6Qst_dGB6n79CJBmBB2ozXLM7x6hBNcYv6Bb0o,798
|
117
|
-
metaflow-stubs/plugins/gcp/gs_utils.pyi,sha256=S7wAqpPqNJuhRcEi7natoMJi-RpMJxfMFC1-MCYPw-U,1184
|
118
|
-
metaflow-stubs/plugins/gcp/includefile_support.pyi,sha256=iLb3Kq1iea3rQAq3hU_yDmCg9RHWFUF2Yc-oJxxhhsg,1722
|
119
|
-
metaflow-stubs/plugins/kubernetes/__init__.pyi,sha256=6TZorWJNqNtmHDdPLdTZk8J7XC8LVDRhkZ1s9qakPMA,453
|
120
|
-
metaflow-stubs/plugins/kubernetes/kubernetes.pyi,sha256=55UDUeVHd24lNuoyDJ-d7ZADpURa5FM78n_CHXMM05w,3825
|
121
|
-
metaflow-stubs/plugins/kubernetes/kubernetes_cli.pyi,sha256=Q35_Q6ZV4to6Cf9fN0Tc6lYLpS_xz7H9vEmOfCChP1Y,3392
|
122
|
-
metaflow-stubs/plugins/kubernetes/kubernetes_client.pyi,sha256=ai544WknTASdFf0iyjNWJFxeIu-XiSP6rtlzxXNwSmA,1022
|
123
|
-
metaflow-stubs/plugins/kubernetes/kubernetes_decorator.pyi,sha256=dQ2EhjD77BLLtB8SOlCRvHkL-k6LSTMbuLiXcrHDskI,5578
|
124
|
-
metaflow-stubs/plugins/kubernetes/kubernetes_jobsets.pyi,sha256=SH7nE8mmiqtozpGwPYHxBj-PIvrM8UTtoUID3oQYx0Y,3964
|
125
|
-
metaflow-stubs/plugins/pypi/__init__.pyi,sha256=JdmKd1F9bIrCbhG6_0barUi3IqFpxre3CCIrc2Zq6ps,627
|
126
|
-
metaflow-stubs/plugins/pypi/conda_decorator.pyi,sha256=OX9bVrWu2IAWbz5D_qsTpCAcfqHkPfFCOHyUJkne3Lc,2070
|
127
|
-
metaflow-stubs/plugins/pypi/conda_environment.pyi,sha256=1aOeyROIe1bHZqb-x-ipSCIouYWI5A7Qijy1jXg0wCk,2333
|
128
|
-
metaflow-stubs/plugins/pypi/pypi_decorator.pyi,sha256=Q_npNrmfoPXoj1VGJ2W25wqNV6SrJvBgXSoZjcBPPFk,905
|
129
|
-
metaflow-stubs/plugins/pypi/pypi_environment.pyi,sha256=T-uJyw0PXZPIREgl4fg8_kCbAbk4vmqeaZauA47iX28,1651
|
130
|
-
metaflow-stubs/plugins/pypi/utils.pyi,sha256=TmYt_vG_WsTzZ8WstjVjW_9tz1Ke3C1SNcP3GEc3Qxc,771
|
131
|
-
metaflow-stubs/plugins/secrets/__init__.pyi,sha256=teIOoxZYhkP-zy8Nbm3lnG7bUDOKzzF8Q7SZhrLTGAg,812
|
132
|
-
metaflow-stubs/plugins/secrets/inline_secrets_provider.pyi,sha256=B4TOl-emMGtDyqdhr9IdH17ZAVof1-dELjMw6vAIFuI,1114
|
133
|
-
metaflow-stubs/plugins/secrets/secrets_decorator.pyi,sha256=r31nQnpRVHj6qepYcEiIt4sHjO-dIwxOczevvtrbl7Y,2024
|
134
|
-
metaflow-stubs/profilers/__init__.pyi,sha256=AWWBcDC56RITZcZUDM-e-UTamNN4fHMbbep1WcxzjWk,654
|
135
|
-
metaflow-stubs/runner/__init__.pyi,sha256=wYDIlPf_6grQS6cfrFML2Cx5-fKgtuWQXSXonwFvFUI,453
|
136
|
-
metaflow-stubs/runner/metaflow_runner.pyi,sha256=OxwG3F3BKND05YZrPjMdyZA-mtubbKvMANtLXIlTDnM,23267
|
137
|
-
metaflow-stubs/runner/nbrun.pyi,sha256=iAPjXDjzCrDb84pta9h7wLoYRTdAxFGhslPe-68sq0g,7486
|
138
|
-
metaflow-stubs/runner/subprocess_manager.pyi,sha256=HDBML2sxq5b7XrGsJgjLuh1-ydCKKVNj1XR74NVNiFM,8577
|
139
|
-
metaflow-stubs/system/__init__.pyi,sha256=EFndURekuRGE7aUkYaHxw11BwdC9jISbLZ4Lxd8KWNw,3383
|
140
|
-
metaflow-stubs/system/system_logger.pyi,sha256=fPyC13rWytPsDAJkAvA9PvD7Wr0OiyguRo-x6LOZ2Ko,1876
|
141
|
-
metaflow-stubs/system/system_monitor.pyi,sha256=CCCsixhkF7Q6IYhSccAZxxl7CB3pftY0pLByuBjBw6w,2017
|
142
|
-
ob_metaflow_stubs-4.7.dist-info/METADATA,sha256=VnVZ_oBsMGvKWSTvtczcCQaEajcAkKRK2s7kx9THMcM,651
|
143
|
-
ob_metaflow_stubs-4.7.dist-info/WHEEL,sha256=bb2Ot9scclHKMOLDEHY6B2sicWOgugjFKaJsT7vwMQo,110
|
144
|
-
ob_metaflow_stubs-4.7.dist-info/top_level.txt,sha256=vEJN-gFv184nGYaYbnS_0-Q3cmXuRw3iT9l3yyYb1JA,15
|
145
|
-
ob_metaflow_stubs-4.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|