ob-metaflow-stubs 2.11.4.1__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 +2753 -0
- metaflow-stubs/cards.pyi +266 -0
- metaflow-stubs/cli.pyi +137 -0
- metaflow-stubs/client/__init__.pyi +993 -0
- metaflow-stubs/client/core.pyi +1425 -0
- metaflow-stubs/client/filecache.pyi +87 -0
- metaflow-stubs/events.pyi +107 -0
- metaflow-stubs/exception.pyi +98 -0
- metaflow-stubs/flowspec.pyi +297 -0
- metaflow-stubs/generated_for.txt +1 -0
- metaflow-stubs/includefile.pyi +524 -0
- metaflow-stubs/metadata/metadata.pyi +377 -0
- metaflow-stubs/metadata/util.pyi +18 -0
- metaflow-stubs/metaflow_config.pyi +263 -0
- metaflow-stubs/metaflow_current.pyi +327 -0
- metaflow-stubs/mflog/mflog.pyi +22 -0
- metaflow-stubs/multicore_utils.pyi +62 -0
- metaflow-stubs/parameters.pyi +114 -0
- metaflow-stubs/plugins/__init__.pyi +209 -0
- metaflow-stubs/plugins/airflow/__init__.pyi +9 -0
- metaflow-stubs/plugins/airflow/airflow.pyi +179 -0
- metaflow-stubs/plugins/airflow/airflow_cli.pyi +90 -0
- metaflow-stubs/plugins/airflow/airflow_decorator.pyi +50 -0
- metaflow-stubs/plugins/airflow/airflow_utils.pyi +137 -0
- metaflow-stubs/plugins/airflow/exception.pyi +27 -0
- metaflow-stubs/plugins/airflow/sensors/__init__.pyi +26 -0
- metaflow-stubs/plugins/airflow/sensors/base_sensor.pyi +60 -0
- metaflow-stubs/plugins/airflow/sensors/external_task_sensor.pyi +54 -0
- metaflow-stubs/plugins/airflow/sensors/s3_sensor.pyi +50 -0
- metaflow-stubs/plugins/argo/__init__.pyi +9 -0
- metaflow-stubs/plugins/argo/argo_client.pyi +77 -0
- metaflow-stubs/plugins/argo/argo_events.pyi +79 -0
- metaflow-stubs/plugins/argo/argo_workflows.pyi +604 -0
- metaflow-stubs/plugins/argo/argo_workflows_cli.pyi +180 -0
- metaflow-stubs/plugins/argo/argo_workflows_decorator.pyi +169 -0
- metaflow-stubs/plugins/aws/__init__.pyi +9 -0
- metaflow-stubs/plugins/aws/aws_client.pyi +22 -0
- metaflow-stubs/plugins/aws/aws_utils.pyi +93 -0
- metaflow-stubs/plugins/aws/batch/__init__.pyi +9 -0
- metaflow-stubs/plugins/aws/batch/batch.pyi +120 -0
- metaflow-stubs/plugins/aws/batch/batch_cli.pyi +42 -0
- metaflow-stubs/plugins/aws/batch/batch_client.pyi +159 -0
- metaflow-stubs/plugins/aws/batch/batch_decorator.pyi +145 -0
- metaflow-stubs/plugins/aws/secrets_manager/__init__.pyi +9 -0
- metaflow-stubs/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.pyi +73 -0
- metaflow-stubs/plugins/aws/step_functions/__init__.pyi +9 -0
- metaflow-stubs/plugins/aws/step_functions/dynamo_db_client.pyi +22 -0
- metaflow-stubs/plugins/aws/step_functions/event_bridge_client.pyi +27 -0
- metaflow-stubs/plugins/aws/step_functions/production_token.pyi +18 -0
- metaflow-stubs/plugins/aws/step_functions/schedule_decorator.pyi +17 -0
- metaflow-stubs/plugins/aws/step_functions/step_functions.pyi +220 -0
- metaflow-stubs/plugins/aws/step_functions/step_functions_cli.pyi +139 -0
- metaflow-stubs/plugins/aws/step_functions/step_functions_client.pyi +36 -0
- metaflow-stubs/plugins/aws/step_functions/step_functions_decorator.pyi +49 -0
- metaflow-stubs/plugins/azure/__init__.pyi +9 -0
- metaflow-stubs/plugins/azure/azure_credential.pyi +28 -0
- metaflow-stubs/plugins/azure/azure_exceptions.pyi +28 -0
- metaflow-stubs/plugins/azure/azure_utils.pyi +76 -0
- metaflow-stubs/plugins/azure/blob_service_client_factory.pyi +52 -0
- metaflow-stubs/plugins/azure/includefile_support.pyi +63 -0
- metaflow-stubs/plugins/cards/__init__.pyi +9 -0
- metaflow-stubs/plugins/cards/card_cli.pyi +557 -0
- metaflow-stubs/plugins/cards/card_client.pyi +178 -0
- metaflow-stubs/plugins/cards/card_creator.pyi +26 -0
- metaflow-stubs/plugins/cards/card_datastore.pyi +111 -0
- metaflow-stubs/plugins/cards/card_decorator.pyi +133 -0
- metaflow-stubs/plugins/cards/card_modules/__init__.pyi +67 -0
- metaflow-stubs/plugins/cards/card_modules/basic.pyi +263 -0
- metaflow-stubs/plugins/cards/card_modules/card.pyi +62 -0
- metaflow-stubs/plugins/cards/card_modules/chevron/__init__.pyi +78 -0
- metaflow-stubs/plugins/cards/card_modules/chevron/main.pyi +77 -0
- metaflow-stubs/plugins/cards/card_modules/chevron/metadata.pyi +11 -0
- metaflow-stubs/plugins/cards/card_modules/chevron/renderer.pyi +114 -0
- metaflow-stubs/plugins/cards/card_modules/chevron/tokenizer.pyi +75 -0
- metaflow-stubs/plugins/cards/card_modules/components.pyi +251 -0
- metaflow-stubs/plugins/cards/card_modules/convert_to_native_type.pyi +45 -0
- metaflow-stubs/plugins/cards/card_modules/renderer_tools.pyi +24 -0
- metaflow-stubs/plugins/cards/card_modules/test_cards.pyi +155 -0
- metaflow-stubs/plugins/cards/card_resolver.pyi +60 -0
- metaflow-stubs/plugins/cards/component_serializer.pyi +227 -0
- metaflow-stubs/plugins/cards/exception.pyi +71 -0
- metaflow-stubs/plugins/catch_decorator.pyi +58 -0
- metaflow-stubs/plugins/datatools/__init__.pyi +339 -0
- metaflow-stubs/plugins/datatools/local.pyi +82 -0
- metaflow-stubs/plugins/datatools/s3/__init__.pyi +589 -0
- metaflow-stubs/plugins/datatools/s3/s3.pyi +875 -0
- metaflow-stubs/plugins/datatools/s3/s3tail.pyi +34 -0
- metaflow-stubs/plugins/datatools/s3/s3util.pyi +45 -0
- metaflow-stubs/plugins/debug_logger.pyi +25 -0
- metaflow-stubs/plugins/debug_monitor.pyi +25 -0
- metaflow-stubs/plugins/environment_decorator.pyi +17 -0
- metaflow-stubs/plugins/events_decorator.pyi +34 -0
- metaflow-stubs/plugins/frameworks/__init__.pyi +9 -0
- metaflow-stubs/plugins/frameworks/pytorch.pyi +42 -0
- metaflow-stubs/plugins/gcp/__init__.pyi +9 -0
- metaflow-stubs/plugins/gcp/gs_exceptions.pyi +22 -0
- metaflow-stubs/plugins/gcp/gs_storage_client_factory.pyi +26 -0
- metaflow-stubs/plugins/gcp/gs_utils.pyi +38 -0
- metaflow-stubs/plugins/gcp/includefile_support.pyi +63 -0
- metaflow-stubs/plugins/kubernetes/__init__.pyi +9 -0
- metaflow-stubs/plugins/kubernetes/kubernetes.pyi +127 -0
- metaflow-stubs/plugins/kubernetes/kubernetes_cli.pyi +73 -0
- metaflow-stubs/plugins/kubernetes/kubernetes_client.pyi +62 -0
- metaflow-stubs/plugins/kubernetes/kubernetes_decorator.pyi +165 -0
- metaflow-stubs/plugins/kubernetes/kubernetes_job.pyi +100 -0
- metaflow-stubs/plugins/package_cli.pyi +9 -0
- metaflow-stubs/plugins/parallel_decorator.pyi +34 -0
- metaflow-stubs/plugins/project_decorator.pyi +36 -0
- metaflow-stubs/plugins/pypi/__init__.pyi +18 -0
- metaflow-stubs/plugins/pypi/conda_decorator.pyi +59 -0
- metaflow-stubs/plugins/pypi/conda_environment.pyi +86 -0
- metaflow-stubs/plugins/pypi/pypi_decorator.pyi +22 -0
- metaflow-stubs/plugins/pypi/pypi_environment.pyi +50 -0
- metaflow-stubs/plugins/pypi/utils.pyi +28 -0
- metaflow-stubs/plugins/resources_decorator.pyi +15 -0
- metaflow-stubs/plugins/retry_decorator.pyi +28 -0
- metaflow-stubs/plugins/secrets/__init__.pyi +21 -0
- metaflow-stubs/plugins/secrets/inline_secrets_provider.pyi +30 -0
- metaflow-stubs/plugins/secrets/secrets_decorator.pyi +75 -0
- metaflow-stubs/plugins/storage_executor.pyi +33 -0
- metaflow-stubs/plugins/tag_cli.pyi +370 -0
- metaflow-stubs/plugins/test_unbounded_foreach_decorator.pyi +54 -0
- metaflow-stubs/plugins/timeout_decorator.pyi +39 -0
- metaflow-stubs/procpoll.pyi +51 -0
- metaflow-stubs/py.typed +0 -0
- metaflow-stubs/pylint_wrapper.pyi +31 -0
- metaflow-stubs/tagging_util.pyi +52 -0
- ob_metaflow_stubs-2.11.4.1.dist-info/METADATA +22 -0
- ob_metaflow_stubs-2.11.4.1.dist-info/RECORD +131 -0
- ob_metaflow_stubs-2.11.4.1.dist-info/WHEEL +6 -0
- ob_metaflow_stubs-2.11.4.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
##################################################################################
|
2
|
+
# Auto-generated Metaflow stub file #
|
3
|
+
# MF version: 2.11.4.1 #
|
4
|
+
# Generated on 2024-02-28T05:30:43.893383 #
|
5
|
+
##################################################################################
|
6
|
+
|
7
|
+
from __future__ import annotations
|
8
|
+
|
9
|
+
import typing
|
10
|
+
if typing.TYPE_CHECKING:
|
11
|
+
import metaflow.exception
|
12
|
+
|
13
|
+
class MetaflowTaggingError(metaflow.exception.MetaflowException, metaclass=type):
|
14
|
+
...
|
15
|
+
|
16
|
+
def is_utf8_encodable(x):
|
17
|
+
"""
|
18
|
+
Returns true if the object can be encoded with UTF-8
|
19
|
+
"""
|
20
|
+
...
|
21
|
+
|
22
|
+
def is_utf8_decodable(x):
|
23
|
+
"""
|
24
|
+
Returns true if the object can be decoded with UTF-8
|
25
|
+
"""
|
26
|
+
...
|
27
|
+
|
28
|
+
MAX_USER_TAG_SET_SIZE: int
|
29
|
+
|
30
|
+
MAX_TAG_SIZE: int
|
31
|
+
|
32
|
+
def validate_tags(tags, existing_tags = None):
|
33
|
+
"""
|
34
|
+
Raises MetaflowTaggingError if invalid based on these rules:
|
35
|
+
|
36
|
+
Tag set size is too large. But it's OK if tag set is not larger
|
37
|
+
than an existing tag set (if provided).
|
38
|
+
|
39
|
+
Then, we validate each tag. See validate_tag()
|
40
|
+
"""
|
41
|
+
...
|
42
|
+
|
43
|
+
def validate_tag(tag):
|
44
|
+
"""
|
45
|
+
- Tag must be either of bytes-type or unicode-type.
|
46
|
+
- If tag is of bytes-type, it must be UTF-8 decodable
|
47
|
+
- If tag is of unicode-type, it must be UTF-8 encodable
|
48
|
+
- Tag may not be empty string.
|
49
|
+
- Tag cannot be too long (500 chars)
|
50
|
+
"""
|
51
|
+
...
|
52
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ob-metaflow-stubs
|
3
|
+
Version: 2.11.4.1
|
4
|
+
Summary: Metaflow Stubs: Stubs for the metaflow package
|
5
|
+
Author: Netflix, Outerbounds & the Metaflow Community
|
6
|
+
Author-email: help@outerbounds.co
|
7
|
+
License: Apache License 2.0
|
8
|
+
Requires-Python: >=3.7.0
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
Requires-Dist: ob-metaflow ==2.11.4.1
|
11
|
+
|
12
|
+
# Metaflow Stubs
|
13
|
+
|
14
|
+
This package contains stub files for `metaflow` and thus offers type hints for various editors (such as `VSCode`) and language servers (such as `Pylance`).
|
15
|
+
|
16
|
+
## Installation
|
17
|
+
|
18
|
+
To install Metaflow Stubs in your local environment, you can install from [PyPi](https://pypi.org/project/metaflow-stubs/):
|
19
|
+
|
20
|
+
```sh
|
21
|
+
pip install metaflow-stubs
|
22
|
+
```
|
@@ -0,0 +1,131 @@
|
|
1
|
+
metaflow-stubs/__init__.pyi,sha256=-xw7_27OexXldjyHmvOTbsN73gP7NVXBMI_7K4vTluQ,105772
|
2
|
+
metaflow-stubs/cards.pyi,sha256=R_dOiLBS0UywJ1M4k5YDFx7pXj5pOJ1Y5ZHqS_BOVHI,9145
|
3
|
+
metaflow-stubs/cli.pyi,sha256=g29RXIpNmlD5TQeRh963SWPQ9-PwyRFSvOHlD5ODYTQ,2908
|
4
|
+
metaflow-stubs/events.pyi,sha256=2Lh83kNXoqAAZmofsDsm_2JmEtAeyAiJfWJWVCWrfj0,3405
|
5
|
+
metaflow-stubs/exception.pyi,sha256=u9cj-WuBTrXDak32RIPSNxlfYHIMH-Hoj6VyBhBIH5o,2524
|
6
|
+
metaflow-stubs/flowspec.pyi,sha256=Wz73vhHsXlokSl2G3qbJvmAa_8L_oy_0apToK0P86JY,10442
|
7
|
+
metaflow-stubs/generated_for.txt,sha256=gWsunkssbV1vzFPeS3F_2zfPzKT1ZBYZOO5kMlnEq3A,35
|
8
|
+
metaflow-stubs/includefile.pyi,sha256=l5W9fn0spH4kGos7vRnAY5zg8XmxNgzG5T55N6lhjI4,18152
|
9
|
+
metaflow-stubs/metaflow_config.pyi,sha256=TqXZiyWvurYs6ZnlG9k1b1ySxk9JZa2-6rcaMd3DjyM,4203
|
10
|
+
metaflow-stubs/metaflow_current.pyi,sha256=AqFat9jLrClOFBM7K6LsmHgXqj7CfIAI-9qwRQnEu4c,8475
|
11
|
+
metaflow-stubs/multicore_utils.pyi,sha256=2LOOiDAqYJp7mEFHinXEnpnk3wzGpM8d1V53d4rk5nQ,2369
|
12
|
+
metaflow-stubs/parameters.pyi,sha256=BMLvEmmqhKRczn4yhi-pMTXybI4nyJggt3QsHaBcNhQ,3512
|
13
|
+
metaflow-stubs/procpoll.pyi,sha256=KckEIQA81SmHYt-7XRY0Jj21edeLmzeqzUCXvrcJABM,1249
|
14
|
+
metaflow-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
+
metaflow-stubs/pylint_wrapper.pyi,sha256=ZsZdd7VtTNskArOxAFEjaV_HxSiMRQLa0hUrHzrRzWw,972
|
16
|
+
metaflow-stubs/tagging_util.pyi,sha256=CmcgddSOZbb9HUZhJgMwiEwKnbYIwocwVC9jkmoVljw,1485
|
17
|
+
metaflow-stubs/client/__init__.pyi,sha256=_TVz1BK_VuFSXgWEXG3yJ4_RdQc4e1pSSlb2HMMqERw,28941
|
18
|
+
metaflow-stubs/client/core.pyi,sha256=0gBEHrBj33LIRsMwGgoChQsiToEDrUFrH2ELCjq-BFo,40806
|
19
|
+
metaflow-stubs/client/filecache.pyi,sha256=ORtSToSud0XHt4jCYKM0hkHDfAgxExcThVBkRgUvNuM,3036
|
20
|
+
metaflow-stubs/metadata/metadata.pyi,sha256=hL3Ds4BDnjP6IgOln8xnAZ34DYrKzg4i88MpZO2ss7Q,12396
|
21
|
+
metaflow-stubs/metadata/util.pyi,sha256=L1TuqEDZbZaPmwpMRXsehBUTRQHlTr3GMyJIO6-dBE4,657
|
22
|
+
metaflow-stubs/mflog/mflog.pyi,sha256=vAB3r77P3PA225bA1X8bHG4qSE0e4sNuDJj8q08hQ38,621
|
23
|
+
metaflow-stubs/plugins/__init__.pyi,sha256=dD3keXHVv54EpghWreqlwdxASf8ATtrAEjzqO2rCdc0,5654
|
24
|
+
metaflow-stubs/plugins/catch_decorator.pyi,sha256=-L5dXpa0Kg0xMCYNcWoGrL73e2iA5wW5AG17q8GRzoU,1826
|
25
|
+
metaflow-stubs/plugins/debug_logger.pyi,sha256=_d8wZxqv1rGXzJNVYO7PHIpAkpfL7Y62q9Q_pWNzKzQ,815
|
26
|
+
metaflow-stubs/plugins/debug_monitor.pyi,sha256=51jeIs5n4rN57-_OXBn8F6v7ZLzNwbZeb4Dj8eiu1vo,793
|
27
|
+
metaflow-stubs/plugins/environment_decorator.pyi,sha256=kK7Ub6wtb1s5X8h62jqwnwnEHjcJkyp1YkKuzete6Ao,714
|
28
|
+
metaflow-stubs/plugins/events_decorator.pyi,sha256=SvQak_H25kWF_TIrd7F7Vkqy8dCstulueJMEzMxCqtI,1220
|
29
|
+
metaflow-stubs/plugins/package_cli.pyi,sha256=otLug-PJaaLwXPrR5ZqNzXXg2CzGxm08rCCkABhtpho,453
|
30
|
+
metaflow-stubs/plugins/parallel_decorator.pyi,sha256=nmsauOJYl_NNzGWhq0nRwkjBz1_vc8AvvY0XpsYuWTs,1248
|
31
|
+
metaflow-stubs/plugins/project_decorator.pyi,sha256=Zl1tjT-yNNRGHga6hMcZWPTXZvZyQxCW1KJdLhfyU5E,1136
|
32
|
+
metaflow-stubs/plugins/resources_decorator.pyi,sha256=tq9cHfIz2ErgfaJEQKg-iArdRik0zWspQbcOuJW9K-U,609
|
33
|
+
metaflow-stubs/plugins/retry_decorator.pyi,sha256=QTWpcgs1u4XqRgPqhkty3rE2tb7Jv1zMqn9Q_9qTmIA,930
|
34
|
+
metaflow-stubs/plugins/storage_executor.pyi,sha256=e_L-Jbh03vKjVt3lteLEzbQBqMmbBz3jqK4SsKVi2Zg,1068
|
35
|
+
metaflow-stubs/plugins/tag_cli.pyi,sha256=m_ubpgXblEuyM2-s7OVrjDCRCD3YkNcTeOrKs60Wmyo,10363
|
36
|
+
metaflow-stubs/plugins/test_unbounded_foreach_decorator.pyi,sha256=rhVcCKNHA4LQGFM6b2ub-t66lxzrcf3OmoaHL6JoDMo,1672
|
37
|
+
metaflow-stubs/plugins/timeout_decorator.pyi,sha256=h_JWYowsTrF3mfSP1wqUSe241W_uIydoPKgBf-571Uk,1373
|
38
|
+
metaflow-stubs/plugins/airflow/__init__.pyi,sha256=LB_M65JKVUsqLgz2hB5zvy4tw60V2o7FIOogmANLs0s,453
|
39
|
+
metaflow-stubs/plugins/airflow/airflow.pyi,sha256=Xprs9yZV26NQftOnOH0Y8vutm2VuL_WmSaMVQki3ezI,5084
|
40
|
+
metaflow-stubs/plugins/airflow/airflow_cli.pyi,sha256=3XMo7KE-K9573yhDCNrTOdnMhsZAur10vdM4d51Fs34,3221
|
41
|
+
metaflow-stubs/plugins/airflow/airflow_decorator.pyi,sha256=6xGZ3W58Ek3-4Csk1zptR7XF6h_zufOr9yiHcMGqaAY,1512
|
42
|
+
metaflow-stubs/plugins/airflow/airflow_utils.pyi,sha256=DxalokzqjjQadbPX_kC1eKVfVNP20cSTqZmuNnYPzYg,3053
|
43
|
+
metaflow-stubs/plugins/airflow/exception.pyi,sha256=ao9Yxftwz7oobToHr63fbTRmYOvpvnZ3O0-hRTfsUis,899
|
44
|
+
metaflow-stubs/plugins/airflow/sensors/__init__.pyi,sha256=9n5mwHEmpOYohM5hDsaZbC5OyFuz_3nVJXirwqg-Aqo,947
|
45
|
+
metaflow-stubs/plugins/airflow/sensors/base_sensor.pyi,sha256=gWQ-zjrfexeUr6fg25nM0_ad5z_4UxUb9lyjjC-t-gw,1828
|
46
|
+
metaflow-stubs/plugins/airflow/sensors/external_task_sensor.pyi,sha256=Fpv8UnFVa52w1rSKS0KzugBogv0F9sEdbwuko27sYBA,1685
|
47
|
+
metaflow-stubs/plugins/airflow/sensors/s3_sensor.pyi,sha256=fiFeqms3oojLM6Utqb0YYK9fdiZf5ZErXQGRFEnLUb0,1605
|
48
|
+
metaflow-stubs/plugins/argo/__init__.pyi,sha256=vmNg20Fvg7n8E0nU9ClbV1Wh0NbzT7pfM4qohPdBVi8,453
|
49
|
+
metaflow-stubs/plugins/argo/argo_client.pyi,sha256=Vdebny-i_pEHPhFjvmVJP7yzZloxemOBL0VSzlEcUiA,2361
|
50
|
+
metaflow-stubs/plugins/argo/argo_events.pyi,sha256=73YbhbvSw9IIJ8YFfi13e1ftLr3iMaInSDf_DD2QwYI,2782
|
51
|
+
metaflow-stubs/plugins/argo/argo_workflows.pyi,sha256=-3K1rO0oi7tWdt7eLbOKPcjD4-_JRZQiE9F2Aoz5uls,14340
|
52
|
+
metaflow-stubs/plugins/argo/argo_workflows_cli.pyi,sha256=6QN0HmOUi01jQXIE-DRvHKznN6HDTrrYVfaK8Utp2eA,5800
|
53
|
+
metaflow-stubs/plugins/argo/argo_workflows_decorator.pyi,sha256=ClxbhwghzyF5rPglwItfrQ02uzF6gAcaoj73zcFyrxs,5870
|
54
|
+
metaflow-stubs/plugins/aws/__init__.pyi,sha256=nYJW2i_fMpKbwpwVoxnYn34m7XotF-jkAPnUR6vKqrw,453
|
55
|
+
metaflow-stubs/plugins/aws/aws_client.pyi,sha256=imU7dOsjbCxKlY04jSNBM8JLx70iXd5x2p1QSxd1jdQ,829
|
56
|
+
metaflow-stubs/plugins/aws/aws_utils.pyi,sha256=cT2yQLaLig5OHcM9V1hxZ7sZFuYFoq-wxeKEHDbV_0Q,3098
|
57
|
+
metaflow-stubs/plugins/aws/batch/__init__.pyi,sha256=vJ4ncM6jYbGAnfqU5piSkHfdO7WEYgV74MiNac_5YEw,453
|
58
|
+
metaflow-stubs/plugins/aws/batch/batch.pyi,sha256=ABCFyap3x6BSutsa9eOL5M_UizsxbJ4Jhvt0_lpIegc,3476
|
59
|
+
metaflow-stubs/plugins/aws/batch/batch_cli.pyi,sha256=ulemir-APu8FLJAC3riQPHclhW5qTe_YCtOrDhW7of8,2155
|
60
|
+
metaflow-stubs/plugins/aws/batch/batch_client.pyi,sha256=gqk4z70pgVaEnUbrO56gKKGEFw8NrCiWORbumUOCbTg,3698
|
61
|
+
metaflow-stubs/plugins/aws/batch/batch_decorator.pyi,sha256=yhmMMLZlSa3k9n_xXks10wuF4Q0nibwnPg_s-7hBaWk,4734
|
62
|
+
metaflow-stubs/plugins/aws/secrets_manager/__init__.pyi,sha256=_81ketWQk8JPOFuH1KOZ_ua9cW7HJE21gdrdriSf1Ws,453
|
63
|
+
metaflow-stubs/plugins/aws/secrets_manager/aws_secrets_manager_secrets_provider.pyi,sha256=d5DhB-J88ZtOaJ_9jFxlHkjgjg-JnOzSezrM8jU5Z-Y,3226
|
64
|
+
metaflow-stubs/plugins/aws/step_functions/__init__.pyi,sha256=qAxu9t62jgZP8c2xDwda3pyYexcUXc2YvmKGj3-aRyc,453
|
65
|
+
metaflow-stubs/plugins/aws/step_functions/dynamo_db_client.pyi,sha256=pzNyho5NTsSwadG2k5Yy_RzsWrMEqp_lb3UArC8U7OY,875
|
66
|
+
metaflow-stubs/plugins/aws/step_functions/event_bridge_client.pyi,sha256=yAi8GWOGf6Xm0H-DevhBDpMPIqlnEbFzDfl9zOWf-yY,798
|
67
|
+
metaflow-stubs/plugins/aws/step_functions/production_token.pyi,sha256=O1O-XSTEHxuJKIEIXNN11HaqVQIgOyvjw8ExMDMM7Og,596
|
68
|
+
metaflow-stubs/plugins/aws/step_functions/schedule_decorator.pyi,sha256=6GYO2q8JUCST8EiJNFgSOX9yeIBbKMRuaRyM7AfQuKY,720
|
69
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions.pyi,sha256=KE8pjDsQDGnmqAyeBYdt7F33Yz9ICnPsVnklpU-trGY,6396
|
70
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_cli.pyi,sha256=4_qyLGw3MPsL6UywMRRTCr_s5k6fNA_B4GNkKRkjnSU,4441
|
71
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_client.pyi,sha256=EiO8RcMQkT5Nym7nL5Wv3paK0Qet1SChsj-yFuPtxjk,1085
|
72
|
+
metaflow-stubs/plugins/aws/step_functions/step_functions_decorator.pyi,sha256=1jB_7Oxy29LA20zo439lPw9zMAt6r7fE4xVaBDmkIjE,1759
|
73
|
+
metaflow-stubs/plugins/azure/__init__.pyi,sha256=S_5tSNYA-SMiNCtVUs6Mt9tpZ7SUqIO3grx5Nzb6Za4,453
|
74
|
+
metaflow-stubs/plugins/azure/azure_credential.pyi,sha256=DCnrkPDaXAHSckjzxsT1kfaFj6Q7g66W24PPmHtnzZU,1067
|
75
|
+
metaflow-stubs/plugins/azure/azure_exceptions.pyi,sha256=Go9r2NyXpXfwpcIsKyZXsXgnF-wizMRN1XJj9cBC-6k,975
|
76
|
+
metaflow-stubs/plugins/azure/azure_utils.pyi,sha256=Dt5iQbTbs0fz83raUuMBOMh8uhKO1PyFI0Npc3j6aMY,2513
|
77
|
+
metaflow-stubs/plugins/azure/blob_service_client_factory.pyi,sha256=H3izsUlGuhMXmVgu6WrC4t9kxqu5rnCjA_LRvY6Tzz4,1782
|
78
|
+
metaflow-stubs/plugins/azure/includefile_support.pyi,sha256=CPU9lrAMo9KzymKQQXxrHU1J50eLEBXyQGL0JVChX6I,1748
|
79
|
+
metaflow-stubs/plugins/cards/__init__.pyi,sha256=nS2zKhE4-7IrM-HaWmcSfphXtjbbLd103zBC3c21n0A,453
|
80
|
+
metaflow-stubs/plugins/cards/card_cli.pyi,sha256=EnyOQo1SIctj0ASe2oa6CJ5RN6pUwP6M3xwbU1sokNE,18088
|
81
|
+
metaflow-stubs/plugins/cards/card_client.pyi,sha256=DStE6fYBphaSf6JbRgVlrE6uQbvuyiOTT8sDpSWy-l4,5396
|
82
|
+
metaflow-stubs/plugins/cards/card_creator.pyi,sha256=R_2H31Z_HXkKk65k69rq0jts8ujUUzM8vACcLbeOeYc,969
|
83
|
+
metaflow-stubs/plugins/cards/card_datastore.pyi,sha256=6Nn55-CSbT7mToUL7PQBwR4WvfXUjCn3yNnpe5iv7g0,2942
|
84
|
+
metaflow-stubs/plugins/cards/card_decorator.pyi,sha256=_DIHub2piZodwJXKr-ul41uKt9yaehsUxSmuD4bnaIw,4258
|
85
|
+
metaflow-stubs/plugins/cards/card_resolver.pyi,sha256=4EiZvDfmmb-QNmFYRtp4uE4oteI9fuH1A_36pvHnUoo,1975
|
86
|
+
metaflow-stubs/plugins/cards/component_serializer.pyi,sha256=Zb7po2ccd87ME8FUNpThCeOmsFLBtqyZT6xNFyLCn7U,6789
|
87
|
+
metaflow-stubs/plugins/cards/exception.pyi,sha256=LfJ6KDOMgH7UKrOxmSESgO-yaLi3lbPNoyhUuHAptz4,2244
|
88
|
+
metaflow-stubs/plugins/cards/card_modules/__init__.pyi,sha256=3r7IqMpoCT8Wwg8XEQT0F3yaGd2N-i6LgA3Bnmsz_JA,1871
|
89
|
+
metaflow-stubs/plugins/cards/card_modules/basic.pyi,sha256=Nqy_7-FiCD7ol0iQiz4sTV-lIk2JioRm2FyLunp2UHQ,7581
|
90
|
+
metaflow-stubs/plugins/cards/card_modules/card.pyi,sha256=_FghhyqVxO9FHvv-S4dHtP0u5E3h_Cj7XVIu4ssmAfA,1816
|
91
|
+
metaflow-stubs/plugins/cards/card_modules/components.pyi,sha256=I0TTNrp_x3GBGd3ijvHhBfMXpHOz3aWTaX-irO2rhJg,7674
|
92
|
+
metaflow-stubs/plugins/cards/card_modules/convert_to_native_type.pyi,sha256=YvxjhgS1N-V-4j4o1frNRLP2n28aBbXOnclIxKWje-w,1313
|
93
|
+
metaflow-stubs/plugins/cards/card_modules/renderer_tools.pyi,sha256=spBZZ2lAy6kkO7tVVTc2We9DqIEwbhxbG3TXckV76qI,951
|
94
|
+
metaflow-stubs/plugins/cards/card_modules/test_cards.pyi,sha256=qZ2UMCRaAqQd4IHO_WtDleidSYc5IMsyvFUzYbUItH8,4629
|
95
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/__init__.pyi,sha256=JSI1n2E_jNvhImTB1LH-xWxa2fEOrQfsnbdHRJodyoE,2711
|
96
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/main.pyi,sha256=uDiW6j4DSkMts4s1eMAiPZNhiml6uM-BMlr3hPvlUdg,2667
|
97
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/metadata.pyi,sha256=xy-5MADcIUkyYSDmRgFywHCyjyo4wSZbpnIXtsi0AIQ,467
|
98
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/renderer.pyi,sha256=1RemkOyh_DcDKLJLvwYvsKlypGZXpEQqTrcTmTGTjpc,3525
|
99
|
+
metaflow-stubs/plugins/cards/card_modules/chevron/tokenizer.pyi,sha256=Jq_zCoYKTDTJLXcHhtfpgpogeM5CfXBs_g8PsVZnC_s,1913
|
100
|
+
metaflow-stubs/plugins/datatools/__init__.pyi,sha256=uqrnsBs007RJlmazoxAgSUs7-VfvqPP8ox1r1HBmMFQ,12909
|
101
|
+
metaflow-stubs/plugins/datatools/local.pyi,sha256=PvY3bUzueDXuKTEYeRjoS9sUpT1Dl-UFp2V8XRHosVc,2193
|
102
|
+
metaflow-stubs/plugins/datatools/s3/__init__.pyi,sha256=sliInhqeil5p9ke8rg__Q-shFYvaWMXAx7t2LefBlx8,20310
|
103
|
+
metaflow-stubs/plugins/datatools/s3/s3.pyi,sha256=1KR-k9KD0iZx0LmE-4mLkXF9Tc_3JASGsjtAjtH8XI4,29021
|
104
|
+
metaflow-stubs/plugins/datatools/s3/s3tail.pyi,sha256=4lhPkdt3P8VfsfJbGsfQbuVCWep1sUs-RGz3y-8rEVw,965
|
105
|
+
metaflow-stubs/plugins/datatools/s3/s3util.pyi,sha256=o00RR2wRQi74dkaonAUmBWfu7PaScFi4RZyWwSGSbec,1123
|
106
|
+
metaflow-stubs/plugins/frameworks/__init__.pyi,sha256=CC1pXP2BGiKwwced0cmx9GD9hApdKPBRDC-hwo2uv8I,453
|
107
|
+
metaflow-stubs/plugins/frameworks/pytorch.pyi,sha256=xRn0pEF3QP09EymxI9O3clNOMRQY-YLmJPs9jEczL6s,1622
|
108
|
+
metaflow-stubs/plugins/gcp/__init__.pyi,sha256=d0wyThQUQPKaoMMTmVU-nnwFsCAxV5Iin6LDa2B9F4g,453
|
109
|
+
metaflow-stubs/plugins/gcp/gs_exceptions.pyi,sha256=3ciqSK_Y9k1t52dYO0_BDs4Mdvn0AjOlJHnZFq3U-eI,772
|
110
|
+
metaflow-stubs/plugins/gcp/gs_storage_client_factory.pyi,sha256=Phhg3kkzLhCuxKa8hyfwfPTz4CjBj_rmbbu-veXW574,798
|
111
|
+
metaflow-stubs/plugins/gcp/gs_utils.pyi,sha256=M_zLico6BoYqqUVGT-hRjdDIyh297gIbt08Up2rTbhI,1184
|
112
|
+
metaflow-stubs/plugins/gcp/includefile_support.pyi,sha256=GXHv9LIvjbKo9zt_zVYU41VjgVOT6qkWHBw1qu2jVYM,1722
|
113
|
+
metaflow-stubs/plugins/kubernetes/__init__.pyi,sha256=qNfTpciF8hxB7DElJX0O-ccmI-Bnm20NYMVpX2Z0Pic,453
|
114
|
+
metaflow-stubs/plugins/kubernetes/kubernetes.pyi,sha256=58OaQWdl3L3ntlOeN6jSeMAc7lMHCdr4J7Cay4AsbgA,3433
|
115
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_cli.pyi,sha256=uyQNAKG5GuYsR2bKCxq3bZGdrL2sOyZNzX1uXzitl30,3018
|
116
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_client.pyi,sha256=PnR-KLqtTRRZHBrKLVc12D4STOB8hSO89G493Pcd-ZU,1606
|
117
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_decorator.pyi,sha256=he9_q3Miv4wc4HFAS71_9_-xYsUFlucIcqNcwe8mXp4,4983
|
118
|
+
metaflow-stubs/plugins/kubernetes/kubernetes_job.pyi,sha256=T-eYMYPuHX7He5vtgcdcpDbNyrGvI4__6d5PIPSsxp4,2314
|
119
|
+
metaflow-stubs/plugins/pypi/__init__.pyi,sha256=vldFvdz9fjxi1QBVpMjPv6B6WD4RjHur4bm2LkhDRB0,627
|
120
|
+
metaflow-stubs/plugins/pypi/conda_decorator.pyi,sha256=70_2gYfS7EGGW9SLp6TfkksKok8yrmcFr-TBamZ4Icw,2070
|
121
|
+
metaflow-stubs/plugins/pypi/conda_environment.pyi,sha256=NMddnIpFyjbV4DU2jafiOoUFhzfzvnlITWLEO9zGlmE,2312
|
122
|
+
metaflow-stubs/plugins/pypi/pypi_decorator.pyi,sha256=jbxa3gYiQCPoqwCzWaCRgAAPu6rKv85lshaEMH1LoW4,905
|
123
|
+
metaflow-stubs/plugins/pypi/pypi_environment.pyi,sha256=oUi3zxDctimszSiCYPFJxYwfrFkXjfUckP5QmkRP4rw,1630
|
124
|
+
metaflow-stubs/plugins/pypi/utils.pyi,sha256=T5bwsaQ-MhhgXlXZpsGezs8JFNasfeNKr4bEmtXm67o,771
|
125
|
+
metaflow-stubs/plugins/secrets/__init__.pyi,sha256=nXeXX8l8vwdJMo34ENhYU7SRL4DalkIaxOc8AJAT7t4,812
|
126
|
+
metaflow-stubs/plugins/secrets/inline_secrets_provider.pyi,sha256=BozPe2D4vnYrx3PpiqYUbmbACsUfwm-Wc5LwwoUJbtg,1114
|
127
|
+
metaflow-stubs/plugins/secrets/secrets_decorator.pyi,sha256=ltUoOjGHktb8buSvr2QhOXk3TVUZPOySZ00DtIIEjE0,2024
|
128
|
+
ob_metaflow_stubs-2.11.4.1.dist-info/METADATA,sha256=n66jc6tEOxOkQ9qeIjL6N20t1Xwm5Be_kmOq1BdB0SQ,694
|
129
|
+
ob_metaflow_stubs-2.11.4.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
130
|
+
ob_metaflow_stubs-2.11.4.1.dist-info/top_level.txt,sha256=vEJN-gFv184nGYaYbnS_0-Q3cmXuRw3iT9l3yyYb1JA,15
|
131
|
+
ob_metaflow_stubs-2.11.4.1.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
metaflow-stubs
|