prefect-client 2.20.4__py3-none-any.whl → 3.0.0__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.
- prefect/__init__.py +74 -110
- prefect/_internal/compatibility/deprecated.py +6 -115
- prefect/_internal/compatibility/experimental.py +4 -79
- prefect/_internal/compatibility/migration.py +166 -0
- prefect/_internal/concurrency/__init__.py +2 -2
- prefect/_internal/concurrency/api.py +1 -35
- prefect/_internal/concurrency/calls.py +0 -6
- prefect/_internal/concurrency/cancellation.py +0 -3
- prefect/_internal/concurrency/event_loop.py +0 -20
- prefect/_internal/concurrency/inspection.py +3 -3
- prefect/_internal/concurrency/primitives.py +1 -0
- prefect/_internal/concurrency/services.py +23 -0
- prefect/_internal/concurrency/threads.py +35 -0
- prefect/_internal/concurrency/waiters.py +0 -28
- prefect/_internal/integrations.py +7 -0
- prefect/_internal/pydantic/__init__.py +0 -45
- prefect/_internal/pydantic/annotations/pendulum.py +2 -2
- prefect/_internal/pydantic/v1_schema.py +21 -22
- prefect/_internal/pydantic/v2_schema.py +0 -2
- prefect/_internal/pydantic/v2_validated_func.py +18 -23
- prefect/_internal/pytz.py +1 -1
- prefect/_internal/retries.py +61 -0
- prefect/_internal/schemas/bases.py +45 -177
- prefect/_internal/schemas/fields.py +1 -43
- prefect/_internal/schemas/validators.py +47 -233
- prefect/agent.py +3 -695
- prefect/artifacts.py +173 -14
- prefect/automations.py +39 -4
- prefect/blocks/abstract.py +1 -1
- prefect/blocks/core.py +405 -153
- prefect/blocks/fields.py +2 -57
- prefect/blocks/notifications.py +43 -28
- prefect/blocks/redis.py +168 -0
- prefect/blocks/system.py +67 -20
- prefect/blocks/webhook.py +2 -9
- prefect/cache_policies.py +239 -0
- prefect/client/__init__.py +4 -0
- prefect/client/base.py +33 -27
- prefect/client/cloud.py +65 -20
- prefect/client/collections.py +1 -1
- prefect/client/orchestration.py +650 -442
- prefect/client/schemas/actions.py +115 -100
- prefect/client/schemas/filters.py +46 -52
- prefect/client/schemas/objects.py +228 -178
- prefect/client/schemas/responses.py +18 -36
- prefect/client/schemas/schedules.py +55 -36
- prefect/client/schemas/sorting.py +2 -0
- prefect/client/subscriptions.py +8 -7
- prefect/client/types/flexible_schedule_list.py +11 -0
- prefect/client/utilities.py +9 -6
- prefect/concurrency/asyncio.py +60 -11
- prefect/concurrency/context.py +24 -0
- prefect/concurrency/events.py +2 -2
- prefect/concurrency/services.py +46 -16
- prefect/concurrency/sync.py +51 -7
- prefect/concurrency/v1/asyncio.py +143 -0
- prefect/concurrency/v1/context.py +27 -0
- prefect/concurrency/v1/events.py +61 -0
- prefect/concurrency/v1/services.py +116 -0
- prefect/concurrency/v1/sync.py +92 -0
- prefect/context.py +246 -149
- prefect/deployments/__init__.py +33 -18
- prefect/deployments/base.py +10 -15
- prefect/deployments/deployments.py +2 -1048
- prefect/deployments/flow_runs.py +178 -0
- prefect/deployments/runner.py +72 -173
- prefect/deployments/schedules.py +31 -25
- prefect/deployments/steps/__init__.py +0 -1
- prefect/deployments/steps/core.py +7 -0
- prefect/deployments/steps/pull.py +15 -21
- prefect/deployments/steps/utility.py +2 -1
- prefect/docker/__init__.py +20 -0
- prefect/docker/docker_image.py +82 -0
- prefect/engine.py +15 -2475
- prefect/events/actions.py +17 -23
- prefect/events/cli/automations.py +20 -7
- prefect/events/clients.py +142 -80
- prefect/events/filters.py +14 -18
- prefect/events/related.py +74 -75
- prefect/events/schemas/__init__.py +0 -5
- prefect/events/schemas/automations.py +55 -46
- prefect/events/schemas/deployment_triggers.py +7 -197
- prefect/events/schemas/events.py +46 -65
- prefect/events/schemas/labelling.py +10 -14
- prefect/events/utilities.py +4 -5
- prefect/events/worker.py +23 -8
- prefect/exceptions.py +15 -0
- prefect/filesystems.py +30 -529
- prefect/flow_engine.py +827 -0
- prefect/flow_runs.py +379 -7
- prefect/flows.py +470 -360
- prefect/futures.py +382 -331
- prefect/infrastructure/__init__.py +5 -26
- prefect/infrastructure/base.py +3 -320
- prefect/infrastructure/provisioners/__init__.py +5 -3
- prefect/infrastructure/provisioners/cloud_run.py +13 -8
- prefect/infrastructure/provisioners/container_instance.py +14 -9
- prefect/infrastructure/provisioners/ecs.py +10 -8
- prefect/infrastructure/provisioners/modal.py +8 -5
- prefect/input/__init__.py +4 -0
- prefect/input/actions.py +2 -4
- prefect/input/run_input.py +9 -9
- prefect/logging/formatters.py +2 -4
- prefect/logging/handlers.py +9 -14
- prefect/logging/loggers.py +5 -5
- prefect/main.py +72 -0
- prefect/plugins.py +2 -64
- prefect/profiles.toml +16 -2
- prefect/records/__init__.py +1 -0
- prefect/records/base.py +223 -0
- prefect/records/filesystem.py +207 -0
- prefect/records/memory.py +178 -0
- prefect/records/result_store.py +64 -0
- prefect/results.py +577 -504
- prefect/runner/runner.py +117 -47
- prefect/runner/server.py +32 -34
- prefect/runner/storage.py +3 -12
- prefect/runner/submit.py +2 -10
- prefect/runner/utils.py +2 -2
- prefect/runtime/__init__.py +1 -0
- prefect/runtime/deployment.py +1 -0
- prefect/runtime/flow_run.py +40 -5
- prefect/runtime/task_run.py +1 -0
- prefect/serializers.py +28 -39
- prefect/server/api/collections_data/views/aggregate-worker-metadata.json +5 -14
- prefect/settings.py +209 -332
- prefect/states.py +160 -63
- prefect/task_engine.py +1478 -57
- prefect/task_runners.py +383 -287
- prefect/task_runs.py +240 -0
- prefect/task_worker.py +463 -0
- prefect/tasks.py +684 -374
- prefect/transactions.py +410 -0
- prefect/types/__init__.py +72 -86
- prefect/types/entrypoint.py +13 -0
- prefect/utilities/annotations.py +4 -3
- prefect/utilities/asyncutils.py +227 -148
- prefect/utilities/callables.py +137 -45
- prefect/utilities/collections.py +134 -86
- prefect/utilities/dispatch.py +27 -14
- prefect/utilities/dockerutils.py +11 -4
- prefect/utilities/engine.py +186 -32
- prefect/utilities/filesystem.py +4 -5
- prefect/utilities/importtools.py +26 -27
- prefect/utilities/pydantic.py +128 -38
- prefect/utilities/schema_tools/hydration.py +18 -1
- prefect/utilities/schema_tools/validation.py +30 -0
- prefect/utilities/services.py +35 -9
- prefect/utilities/templating.py +12 -2
- prefect/utilities/timeout.py +20 -5
- prefect/utilities/urls.py +195 -0
- prefect/utilities/visualization.py +1 -0
- prefect/variables.py +78 -59
- prefect/workers/__init__.py +0 -1
- prefect/workers/base.py +237 -244
- prefect/workers/block.py +5 -226
- prefect/workers/cloud.py +6 -0
- prefect/workers/process.py +265 -12
- prefect/workers/server.py +29 -11
- {prefect_client-2.20.4.dist-info → prefect_client-3.0.0.dist-info}/METADATA +28 -24
- prefect_client-3.0.0.dist-info/RECORD +201 -0
- {prefect_client-2.20.4.dist-info → prefect_client-3.0.0.dist-info}/WHEEL +1 -1
- prefect/_internal/pydantic/_base_model.py +0 -51
- prefect/_internal/pydantic/_compat.py +0 -82
- prefect/_internal/pydantic/_flags.py +0 -20
- prefect/_internal/pydantic/_types.py +0 -8
- prefect/_internal/pydantic/utilities/config_dict.py +0 -72
- prefect/_internal/pydantic/utilities/field_validator.py +0 -150
- prefect/_internal/pydantic/utilities/model_construct.py +0 -56
- prefect/_internal/pydantic/utilities/model_copy.py +0 -55
- prefect/_internal/pydantic/utilities/model_dump.py +0 -136
- prefect/_internal/pydantic/utilities/model_dump_json.py +0 -112
- prefect/_internal/pydantic/utilities/model_fields.py +0 -50
- prefect/_internal/pydantic/utilities/model_fields_set.py +0 -29
- prefect/_internal/pydantic/utilities/model_json_schema.py +0 -82
- prefect/_internal/pydantic/utilities/model_rebuild.py +0 -80
- prefect/_internal/pydantic/utilities/model_validate.py +0 -75
- prefect/_internal/pydantic/utilities/model_validate_json.py +0 -68
- prefect/_internal/pydantic/utilities/model_validator.py +0 -87
- prefect/_internal/pydantic/utilities/type_adapter.py +0 -71
- prefect/_vendor/fastapi/__init__.py +0 -25
- prefect/_vendor/fastapi/applications.py +0 -946
- prefect/_vendor/fastapi/background.py +0 -3
- prefect/_vendor/fastapi/concurrency.py +0 -44
- prefect/_vendor/fastapi/datastructures.py +0 -58
- prefect/_vendor/fastapi/dependencies/__init__.py +0 -0
- prefect/_vendor/fastapi/dependencies/models.py +0 -64
- prefect/_vendor/fastapi/dependencies/utils.py +0 -877
- prefect/_vendor/fastapi/encoders.py +0 -177
- prefect/_vendor/fastapi/exception_handlers.py +0 -40
- prefect/_vendor/fastapi/exceptions.py +0 -46
- prefect/_vendor/fastapi/logger.py +0 -3
- prefect/_vendor/fastapi/middleware/__init__.py +0 -1
- prefect/_vendor/fastapi/middleware/asyncexitstack.py +0 -25
- prefect/_vendor/fastapi/middleware/cors.py +0 -3
- prefect/_vendor/fastapi/middleware/gzip.py +0 -3
- prefect/_vendor/fastapi/middleware/httpsredirect.py +0 -3
- prefect/_vendor/fastapi/middleware/trustedhost.py +0 -3
- prefect/_vendor/fastapi/middleware/wsgi.py +0 -3
- prefect/_vendor/fastapi/openapi/__init__.py +0 -0
- prefect/_vendor/fastapi/openapi/constants.py +0 -2
- prefect/_vendor/fastapi/openapi/docs.py +0 -203
- prefect/_vendor/fastapi/openapi/models.py +0 -480
- prefect/_vendor/fastapi/openapi/utils.py +0 -485
- prefect/_vendor/fastapi/param_functions.py +0 -340
- prefect/_vendor/fastapi/params.py +0 -453
- prefect/_vendor/fastapi/py.typed +0 -0
- prefect/_vendor/fastapi/requests.py +0 -4
- prefect/_vendor/fastapi/responses.py +0 -40
- prefect/_vendor/fastapi/routing.py +0 -1331
- prefect/_vendor/fastapi/security/__init__.py +0 -15
- prefect/_vendor/fastapi/security/api_key.py +0 -98
- prefect/_vendor/fastapi/security/base.py +0 -6
- prefect/_vendor/fastapi/security/http.py +0 -172
- prefect/_vendor/fastapi/security/oauth2.py +0 -227
- prefect/_vendor/fastapi/security/open_id_connect_url.py +0 -34
- prefect/_vendor/fastapi/security/utils.py +0 -10
- prefect/_vendor/fastapi/staticfiles.py +0 -1
- prefect/_vendor/fastapi/templating.py +0 -3
- prefect/_vendor/fastapi/testclient.py +0 -1
- prefect/_vendor/fastapi/types.py +0 -3
- prefect/_vendor/fastapi/utils.py +0 -235
- prefect/_vendor/fastapi/websockets.py +0 -7
- prefect/_vendor/starlette/__init__.py +0 -1
- prefect/_vendor/starlette/_compat.py +0 -28
- prefect/_vendor/starlette/_exception_handler.py +0 -80
- prefect/_vendor/starlette/_utils.py +0 -88
- prefect/_vendor/starlette/applications.py +0 -261
- prefect/_vendor/starlette/authentication.py +0 -159
- prefect/_vendor/starlette/background.py +0 -43
- prefect/_vendor/starlette/concurrency.py +0 -59
- prefect/_vendor/starlette/config.py +0 -151
- prefect/_vendor/starlette/convertors.py +0 -87
- prefect/_vendor/starlette/datastructures.py +0 -707
- prefect/_vendor/starlette/endpoints.py +0 -130
- prefect/_vendor/starlette/exceptions.py +0 -60
- prefect/_vendor/starlette/formparsers.py +0 -276
- prefect/_vendor/starlette/middleware/__init__.py +0 -17
- prefect/_vendor/starlette/middleware/authentication.py +0 -52
- prefect/_vendor/starlette/middleware/base.py +0 -220
- prefect/_vendor/starlette/middleware/cors.py +0 -176
- prefect/_vendor/starlette/middleware/errors.py +0 -265
- prefect/_vendor/starlette/middleware/exceptions.py +0 -74
- prefect/_vendor/starlette/middleware/gzip.py +0 -113
- prefect/_vendor/starlette/middleware/httpsredirect.py +0 -19
- prefect/_vendor/starlette/middleware/sessions.py +0 -82
- prefect/_vendor/starlette/middleware/trustedhost.py +0 -64
- prefect/_vendor/starlette/middleware/wsgi.py +0 -147
- prefect/_vendor/starlette/py.typed +0 -0
- prefect/_vendor/starlette/requests.py +0 -328
- prefect/_vendor/starlette/responses.py +0 -347
- prefect/_vendor/starlette/routing.py +0 -933
- prefect/_vendor/starlette/schemas.py +0 -154
- prefect/_vendor/starlette/staticfiles.py +0 -248
- prefect/_vendor/starlette/status.py +0 -199
- prefect/_vendor/starlette/templating.py +0 -231
- prefect/_vendor/starlette/testclient.py +0 -804
- prefect/_vendor/starlette/types.py +0 -30
- prefect/_vendor/starlette/websockets.py +0 -193
- prefect/blocks/kubernetes.py +0 -119
- prefect/deprecated/__init__.py +0 -0
- prefect/deprecated/data_documents.py +0 -350
- prefect/deprecated/packaging/__init__.py +0 -12
- prefect/deprecated/packaging/base.py +0 -96
- prefect/deprecated/packaging/docker.py +0 -146
- prefect/deprecated/packaging/file.py +0 -92
- prefect/deprecated/packaging/orion.py +0 -80
- prefect/deprecated/packaging/serializers.py +0 -171
- prefect/events/instrument.py +0 -135
- prefect/infrastructure/container.py +0 -824
- prefect/infrastructure/kubernetes.py +0 -920
- prefect/infrastructure/process.py +0 -289
- prefect/manifests.py +0 -20
- prefect/new_flow_engine.py +0 -449
- prefect/new_task_engine.py +0 -423
- prefect/pydantic/__init__.py +0 -76
- prefect/pydantic/main.py +0 -39
- prefect/software/__init__.py +0 -2
- prefect/software/base.py +0 -50
- prefect/software/conda.py +0 -199
- prefect/software/pip.py +0 -122
- prefect/software/python.py +0 -52
- prefect/task_server.py +0 -322
- prefect_client-2.20.4.dist-info/RECORD +0 -294
- /prefect/{_internal/pydantic/utilities → client/types}/__init__.py +0 -0
- /prefect/{_vendor → concurrency/v1}/__init__.py +0 -0
- {prefect_client-2.20.4.dist-info → prefect_client-3.0.0.dist-info}/LICENSE +0 -0
- {prefect_client-2.20.4.dist-info → prefect_client-3.0.0.dist-info}/top_level.txt +0 -0
@@ -1,294 +0,0 @@
|
|
1
|
-
prefect/.prefectignore,sha256=awSprvKT0vI8a64mEOLrMxhxqcO-b0ERQeYpA2rNKVQ,390
|
2
|
-
prefect/__init__.py,sha256=w5kE6x_3s2IFnu5Uxq1qdzGHR6oPXxDEoLQ2muG7B_I,4558
|
3
|
-
prefect/_version.py,sha256=I9JsXwt7BjAAbMEZgtmE3a6dJ2jqV-wqWto9D6msb3k,24597
|
4
|
-
prefect/agent.py,sha256=HaGT0yh3fciluYpO99dVHo_LHq7N2cYLuWNrEV_kPV8,27789
|
5
|
-
prefect/artifacts.py,sha256=mreaBE4qMoXkjc9YI-5cAxoye7ixraHB_zr8GTK9xPU,8694
|
6
|
-
prefect/automations.py,sha256=rjVtQblBlKhD_q24bG6zbxJeb_XQJnodMlhr565aZJY,4853
|
7
|
-
prefect/context.py,sha256=Hgn3rIjCbqfCmGnZzV_eZ2FwxGjEhaZjUw_nppqNQSA,18189
|
8
|
-
prefect/engine.py,sha256=yw6LVoaEUCTR-NkSJXRau2gB9jNCspMw83ELaxmwpnE,92291
|
9
|
-
prefect/exceptions.py,sha256=ElqC81_w6XbTaxLYANLMIPK8Fz46NmJZCRKL4NZ-JIg,10907
|
10
|
-
prefect/filesystems.py,sha256=XniPSdBAqywj43X7GyfuWJQIbz07QJ5Y3cVNLhIF3lQ,35260
|
11
|
-
prefect/flow_runs.py,sha256=mFHLavZk1yZ62H3UazuNDBZWAF7AqKttA4rMcHgsVSw,3119
|
12
|
-
prefect/flows.py,sha256=-Ietkctf2ONzmqcytI9Fc8T1-vtPmEuOo3m6wPNLIrQ,84735
|
13
|
-
prefect/futures.py,sha256=RaWfYIXtH7RsWxQ5QWTTlAzwtVV8XWpXaZT_hLq35vQ,12590
|
14
|
-
prefect/manifests.py,sha256=sTM7j8Us5d49zaydYKWsKb7zJ96v1ChkLkLeR0GFYD8,683
|
15
|
-
prefect/new_flow_engine.py,sha256=A1adTWTBAwPCn6ay003Jsoc2SdYgHV4AcJo1bmpa_7Y,16039
|
16
|
-
prefect/new_task_engine.py,sha256=UpKIPtKD5cfyrrc8kQxi-2MLKztlbkfzRsyX27vHGv8,14812
|
17
|
-
prefect/plugins.py,sha256=0C-D3-dKi06JZ44XEGmLjCiAkefbE_lKX-g3urzdbQ4,4163
|
18
|
-
prefect/profiles.toml,sha256=Fs8hD_BdWHZgAijgk8pK_Zx-Pm-YFixqDIfEP6fM-qU,38
|
19
|
-
prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
-
prefect/results.py,sha256=JXuySIfJb9weg49A2YsI3ZxoPoAAYcXn7ajui_8vMbE,25502
|
21
|
-
prefect/serializers.py,sha256=MsMTPgo6APq-pN1pcLD9COdVFnBS9E3WaMuaKgpeJdQ,8821
|
22
|
-
prefect/settings.py,sha256=U4nySdke3t_TyQRJtcgkv5x4LLzwUwWPFrYMFh-QJB8,75227
|
23
|
-
prefect/states.py,sha256=B38zIXnqc8cmw3GPxmMQ4thX6pXb6UtG4PoTZ5thGQs,21036
|
24
|
-
prefect/task_engine.py,sha256=_2I7XLwoT_nNhpzTMa_52aQKjsDoaW6WpzwIHYEWZS0,2598
|
25
|
-
prefect/task_runners.py,sha256=HXUg5UqhZRN2QNBqMdGE1lKhwFhT8TaRN75ScgLbnw8,11012
|
26
|
-
prefect/task_server.py,sha256=-wHuAlY8DLEQuJcEvcFfB4da0Xdnmqk6D7GjHShh-Ik,11668
|
27
|
-
prefect/tasks.py,sha256=HWTT9Y6obBId1VcLCQbmBFN4WUKE0j1pw2IvzyTgF70,56134
|
28
|
-
prefect/variables.py,sha256=4r5gVGpAZxLWHj5JoNZJTuktX1-u3ENzVp3t4M6FDgs,3815
|
29
|
-
prefect/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
prefect/_internal/_logging.py,sha256=HvNHY-8P469o5u4LYEDBTem69XZEt1QUeUaLToijpak,810
|
31
|
-
prefect/_internal/pytz.py,sha256=47Y28jKxUvgw7vaEvN-Xl0laiVdMLXC8IRUEk7oHz1Q,13749
|
32
|
-
prefect/_internal/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
prefect/_internal/compatibility/deprecated.py,sha256=ORtcd5nIUQURxgaFW1MJ6OwTbmsGtwypjTyHTkVLHB4,11578
|
34
|
-
prefect/_internal/compatibility/experimental.py,sha256=qAf2Pp8vYVKi_0P29X5Dyy8qZ430rl2fXa9tXdqoYWk,7670
|
35
|
-
prefect/_internal/concurrency/__init__.py,sha256=ncKwi1NhE3umSFGSKRk9wEVKzN1z1ZD-fmY4EDZHH_U,2142
|
36
|
-
prefect/_internal/concurrency/api.py,sha256=nrNENVcoFNbzo-RwdVSjA6VtfrXFQWcjTGYoacGcd8k,8223
|
37
|
-
prefect/_internal/concurrency/calls.py,sha256=SVMR1yPTQJtBX095WfRk6cMTq4YKf_L6G77qtaTyN3I,15564
|
38
|
-
prefect/_internal/concurrency/cancellation.py,sha256=N1SukD8W26bEx9cU5amdhiUDArWC3oGkTP7K7LpBubY,18277
|
39
|
-
prefect/_internal/concurrency/event_loop.py,sha256=rOxUa7e95xP4ionH3o0gRpUzzG6aZMQUituLpMTvTFo,2596
|
40
|
-
prefect/_internal/concurrency/inspection.py,sha256=GWFoSzgs8bZZGNN-Im9sQ-0t0Dqdn8EbwPR1UY3Mhro,3452
|
41
|
-
prefect/_internal/concurrency/primitives.py,sha256=kxCPD9yLtCeqt-JIHjevL4Zt5FvrF_Bam-Ucf41FX6k,2608
|
42
|
-
prefect/_internal/concurrency/services.py,sha256=aggJd4IUSB6ufppRYdRT-36daEg1JSpJCvK635R8meg,11951
|
43
|
-
prefect/_internal/concurrency/threads.py,sha256=-tReWZL9_XMkRS35SydAfeePH2vqCqb1CGM8lgrKT1I,7846
|
44
|
-
prefect/_internal/concurrency/waiters.py,sha256=93ZLbrul5qTne9Na-B4li02dlXJM6TVPf4sWmYSegg8,9911
|
45
|
-
prefect/_internal/pydantic/__init__.py,sha256=KqiPSCPiaEo_MVCOq2frO34i3h45VIKeHq40WjHStoQ,964
|
46
|
-
prefect/_internal/pydantic/_base_model.py,sha256=QU28vsVQnb9H4AFGocxtHzLGCn4K4My6KFkbXwNVodc,1190
|
47
|
-
prefect/_internal/pydantic/_compat.py,sha256=ZlLV_8julha-EglNavTtvgw665vFBM81-muFA4e4hx8,2578
|
48
|
-
prefect/_internal/pydantic/_flags.py,sha256=h1K50GKUJx09hvGHtfQ-rnBs233jhKr8DVtJUWiaz2A,796
|
49
|
-
prefect/_internal/pydantic/_types.py,sha256=A1WD9OHyGoIp0gujl3ozCoXEd4OcySgjgbmHsMq9RTs,275
|
50
|
-
prefect/_internal/pydantic/schemas.py,sha256=tsRKq5yEIgiRbWMl3BPnbfNaKyDN6pq8WSs0M8SQMm4,452
|
51
|
-
prefect/_internal/pydantic/v1_schema.py,sha256=j_DDQqpP1xFsvkNSjWeviTnnFyNPPqou9n4M2lf3K2U,1133
|
52
|
-
prefect/_internal/pydantic/v2_schema.py,sha256=RE7VQaf6nefhdYU2O-gbzumMcuBk-fiH_6Rq9F7eAqg,3689
|
53
|
-
prefect/_internal/pydantic/v2_validated_func.py,sha256=44I4o8jjiS7TYep-E6UYMwjpYH5F1WwJFajW81A3wts,3823
|
54
|
-
prefect/_internal/pydantic/annotations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
-
prefect/_internal/pydantic/annotations/pendulum.py,sha256=rWT6zzCtIqvK2_EuAkMt73ZzAvdE5tF2104e0-tIaa4,2625
|
56
|
-
prefect/_internal/pydantic/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
|
-
prefect/_internal/pydantic/utilities/config_dict.py,sha256=gALiNZWiSy3a2LQoV81Uhiyz6eJmgXUGn-kwNxKq9Yw,2654
|
58
|
-
prefect/_internal/pydantic/utilities/field_validator.py,sha256=ZuM2XW5oB3dm1YTt8YA8SFSEOCqDHJSxHyqYLajdSQg,5924
|
59
|
-
prefect/_internal/pydantic/utilities/model_construct.py,sha256=Y7c5VJw4kPx-wNQ996QVBkZovdhlBsWyGB3CegWaoko,1876
|
60
|
-
prefect/_internal/pydantic/utilities/model_copy.py,sha256=YnuiakinWvCSo2wHVxDnjjYRZpMzjmfZ44J-E8kDAVo,1528
|
61
|
-
prefect/_internal/pydantic/utilities/model_dump.py,sha256=qSqu2tg9-gYDQl0cSUg70EnBn-bEGu6i-M4vjgGqmH4,5492
|
62
|
-
prefect/_internal/pydantic/utilities/model_dump_json.py,sha256=r5laFbDNcvAfUrBNXaMjRP_lirQgXL-s6hD9Ll-KKsY,4073
|
63
|
-
prefect/_internal/pydantic/utilities/model_fields.py,sha256=Mc_zl-_g1Rr6WuLWwp9V7rlBCKIL2diGyCxyGFIYdsU,1681
|
64
|
-
prefect/_internal/pydantic/utilities/model_fields_set.py,sha256=6BOEvMdUMpHTnk_IFr8xVueYEcUIarsYBnRggKR2Qh0,870
|
65
|
-
prefect/_internal/pydantic/utilities/model_json_schema.py,sha256=R0Gr-Xdit63BD08AF_f1rv5vcgZj91t3_Lr7QH6DL4o,2707
|
66
|
-
prefect/_internal/pydantic/utilities/model_rebuild.py,sha256=h6SbiczkFEeNqQYd8_P2JjsO3Y-YNY6ribM_JhB4hTM,3039
|
67
|
-
prefect/_internal/pydantic/utilities/model_validate.py,sha256=WCYCoeQCAi4ErGp8mS5eFqIfi_Ow7ojmDd6RbW6Gi-o,2118
|
68
|
-
prefect/_internal/pydantic/utilities/model_validate_json.py,sha256=bz0AmxOaLE242xuEMV-7vbFpinowmi96O7xVauueS7A,1910
|
69
|
-
prefect/_internal/pydantic/utilities/model_validator.py,sha256=DpTtIp2On9H18tVRKkVmAx4iyjtzHJdr2ohyA4u0TAE,3780
|
70
|
-
prefect/_internal/pydantic/utilities/type_adapter.py,sha256=rlQ77J263L570uIYKtX4Qud2Yyx9zCUH4j6Yec-0KcU,2352
|
71
|
-
prefect/_internal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
|
-
prefect/_internal/schemas/bases.py,sha256=lEZWz4vG3vxmfiAXFJyCZXtAE6_zCTMuFCI7aa3fREU,9348
|
73
|
-
prefect/_internal/schemas/fields.py,sha256=vRUt-vy414-ERLQm_dqI8Gcz2X8r9AuYpleo6BF0kI0,2125
|
74
|
-
prefect/_internal/schemas/serializers.py,sha256=G_RGHfObjisUiRvd29p-zc6W4bwt5rE1OdR6TXNrRhQ,825
|
75
|
-
prefect/_internal/schemas/validators.py,sha256=9oJnTtBPnpnptBIZ2mos3dWw44vzcv8YtRJgdR_bSxs,32835
|
76
|
-
prefect/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
|
-
prefect/_vendor/fastapi/__init__.py,sha256=u-zfck662O4-Bsz91pZM53R53pVmdEQ1LUgf2hZenb0,1096
|
78
|
-
prefect/_vendor/fastapi/applications.py,sha256=72zqRql-QLOjk68Wmnx4F1aW9_UcDXZ-lf-COP3aL1c,40983
|
79
|
-
prefect/_vendor/fastapi/background.py,sha256=6rf5_wcl7kiiI7iOEKDD8Ey8-cJcv8jIWEKRuN5K2nI,93
|
80
|
-
prefect/_vendor/fastapi/concurrency.py,sha256=47U7EAkZasRzyzJ4x7EFZgrx_XYoDHFXLyUmCgSG3EQ,1534
|
81
|
-
prefect/_vendor/fastapi/datastructures.py,sha256=gGHL3nZXl8hQwzSAiSFpQtVGE06cw8J64VIkNlILBLA,2026
|
82
|
-
prefect/_vendor/fastapi/encoders.py,sha256=E2VIrQ8UYy6WXu12R791JJBCjWVV7lA003jcVWdzmGM,6155
|
83
|
-
prefect/_vendor/fastapi/exception_handlers.py,sha256=xDNw1q-x7fpMpUllGoC_NrzH5Id8goMnqUmDhlQVWU8,1486
|
84
|
-
prefect/_vendor/fastapi/exceptions.py,sha256=131GbKBhoKJNvkE3k2-IvKye6xH-fvNaJ20Q9AZNCoY,1459
|
85
|
-
prefect/_vendor/fastapi/logger.py,sha256=I9NNi3ov8AcqbsbC9wl1X-hdItKgYt2XTrx1f99Zpl4,54
|
86
|
-
prefect/_vendor/fastapi/param_functions.py,sha256=BLvSfhJqiViP-_zYQ7BL_t9IARf4EJbKZSikDNsOkfw,9130
|
87
|
-
prefect/_vendor/fastapi/params.py,sha256=UBEVQ_EK9iIbF3DOJXfH2zcO27uvf5NeRdslMOEtIEA,13350
|
88
|
-
prefect/_vendor/fastapi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
89
|
-
prefect/_vendor/fastapi/requests.py,sha256=KsGwp86w95S-0wgx4pL-T4i9M_z-_KlMzX43rdUg9YU,183
|
90
|
-
prefect/_vendor/fastapi/responses.py,sha256=M67RzoU0K91ojgHjvDIDK3iyBAvA9YKPsUJIP4FtxtY,1381
|
91
|
-
prefect/_vendor/fastapi/routing.py,sha256=Kz1WttDcSqHkt1fW9_UmkZG-G0noRY3FAStkfw_VUNE,57083
|
92
|
-
prefect/_vendor/fastapi/staticfiles.py,sha256=pHK1gf1T43AK-8C0ORNuVX-Mby7F8hjdVQfWbcIzn0A,85
|
93
|
-
prefect/_vendor/fastapi/templating.py,sha256=vOtXhLo80elrrnxBLS1ugnS1IpGSDGv6fbcJknGL9Sc,93
|
94
|
-
prefect/_vendor/fastapi/testclient.py,sha256=Z-RXcaVDim8ZMEOTKjQ-cXk58kcgBuDjTKsa3v_-N-A,82
|
95
|
-
prefect/_vendor/fastapi/types.py,sha256=r6MngTHzkZOP9lzXgduje9yeZe5EInWAzCLuRJlhIuE,118
|
96
|
-
prefect/_vendor/fastapi/utils.py,sha256=P0do9cvvaaCLYwtbdu0whmE9LsOjMGJaVboV0_41goM,8142
|
97
|
-
prefect/_vendor/fastapi/websockets.py,sha256=9KbSW68WAHa08DNJDzXuxjnw0MFM32YCoebGC2CxXAI,288
|
98
|
-
prefect/_vendor/fastapi/dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
|
-
prefect/_vendor/fastapi/dependencies/models.py,sha256=8MYR9xGAEpB0aecTirS4CrjdUYeQxL92Jjz9lo1qVUg,2643
|
100
|
-
prefect/_vendor/fastapi/dependencies/utils.py,sha256=34Gp0CyaqfavsLmxoiR93QK-DKYLfsD3PZizC7mMM1Q,31968
|
101
|
-
prefect/_vendor/fastapi/middleware/__init__.py,sha256=mkq7YvZiveQy8orRbAgcAXI3XlS0mdoMamJ9TVR2V1Y,74
|
102
|
-
prefect/_vendor/fastapi/middleware/asyncexitstack.py,sha256=mRZei6p2QXl1VtXjwU2wszvQ_ynIsmxHi2Qv25tdFN4,1067
|
103
|
-
prefect/_vendor/fastapi/middleware/cors.py,sha256=pvHLYPxinYiUdKFZ4YkSWcp5sUcwfCSLS5fFtVaoTk4,96
|
104
|
-
prefect/_vendor/fastapi/middleware/gzip.py,sha256=8AYhl5Hyta51OFfpkrXZirsXfdpTBTQHXhCNxJCsCwg,96
|
105
|
-
prefect/_vendor/fastapi/middleware/httpsredirect.py,sha256=bxL6-PfSCzPT4vh25VzdIDfg8DPPjRmazNJGVzPX8zI,131
|
106
|
-
prefect/_vendor/fastapi/middleware/trustedhost.py,sha256=p1QHlXVXqsYg--yffzqTP_xkZfvwDzrH4T_Lt8YD7JU,125
|
107
|
-
prefect/_vendor/fastapi/middleware/wsgi.py,sha256=heD0VZHeOZjRcehzZ0E-YG_2fejt3xNVdPtKQy8qHmc,96
|
108
|
-
prefect/_vendor/fastapi/openapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
|
-
prefect/_vendor/fastapi/openapi/constants.py,sha256=mWxYBjED6PU-tQ9X227Qkq2SsW2cv-C1jYFKt63xxEs,107
|
110
|
-
prefect/_vendor/fastapi/openapi/docs.py,sha256=7cumyafspKWgu8e7MMkcENAkK4NIDAEwJ6-3DWCHSaY,6564
|
111
|
-
prefect/_vendor/fastapi/openapi/models.py,sha256=PJe0fD7ws4yJo2L_kKHaZW1-l6cT1P6RdliFEKePjkQ,15179
|
112
|
-
prefect/_vendor/fastapi/openapi/utils.py,sha256=1AZrq1TkzYPT4TEK3ZZI0C-SWgGHwWtBKo__IlKOX1Y,20219
|
113
|
-
prefect/_vendor/fastapi/security/__init__.py,sha256=bO8pNmxqVRXUjfl2mOKiVZLn0FpBQ61VUYVjmppnbJw,881
|
114
|
-
prefect/_vendor/fastapi/security/api_key.py,sha256=3YlTy33ta_pKiAP31q8_XYbHUkKMZZ1lpJYxSyZfMX8,3019
|
115
|
-
prefect/_vendor/fastapi/security/base.py,sha256=WLfxOrnUY901m28lVgrKlqEdXJk004rtaGgULaIn9A0,157
|
116
|
-
prefect/_vendor/fastapi/security/http.py,sha256=bS5EAmWh7ZyGqSk7AhDbjMvlZadeobBN_2X95Qw_0U0,6202
|
117
|
-
prefect/_vendor/fastapi/security/oauth2.py,sha256=0Ikka5HLd94E2sstJvorgVBjdjhA-4vLCcx-u2xCU3U,8488
|
118
|
-
prefect/_vendor/fastapi/security/open_id_connect_url.py,sha256=Jejw8NYrz6F2xF97_mpJISm6py4eNCtPL5vTkmUidY4,1221
|
119
|
-
prefect/_vendor/fastapi/security/utils.py,sha256=bd8T0YM7UQD5ATKucr1bNtAvz_Y3__dVNAv5UebiPvc,293
|
120
|
-
prefect/_vendor/starlette/__init__.py,sha256=6K931DiWIOR94oP_7w9oZPyA0wEqkdgU1lkcLFyRTMU,23
|
121
|
-
prefect/_vendor/starlette/_compat.py,sha256=pcaBiAKr9ON7PFVg780yWlgH88AYXTGfcyV6c3awVY4,1148
|
122
|
-
prefect/_vendor/starlette/_exception_handler.py,sha256=O6Byz56p7qS04NhM6uD5YjXPPBqyjqb3JB5TD9BiYGY,2611
|
123
|
-
prefect/_vendor/starlette/_utils.py,sha256=uX7TvtjqokeCSgi4sRPNTGXAe6C6gGsUZ4o020_iIYM,2349
|
124
|
-
prefect/_vendor/starlette/applications.py,sha256=UIakzsIgaWQ7n9W2l2_aj3yA3a654OErJY0NJTFV0-M,10812
|
125
|
-
prefect/_vendor/starlette/authentication.py,sha256=seBMg4llfCVWbsUtXokoPJBoSiQLspiajB6orsj124M,5424
|
126
|
-
prefect/_vendor/starlette/background.py,sha256=-9F5b7kXhFr9Sfac1kiXW69FajfjFr3axT49Bt5wY8c,1291
|
127
|
-
prefect/_vendor/starlette/concurrency.py,sha256=QNOhq_ddZVvPgIcQbfbkQSD68XDW1gT_li9BbVNixkQ,1795
|
128
|
-
prefect/_vendor/starlette/config.py,sha256=XOiXVP14_IyZzGVRCnGTGPnLlzU7g6WCBzvKgvRH3hU,4657
|
129
|
-
prefect/_vendor/starlette/convertors.py,sha256=Q7pKgRyKgXMMIl8xU9foy5mu-EaLzvynYFlKUSHThAo,2254
|
130
|
-
prefect/_vendor/starlette/datastructures.py,sha256=AyApp3jfD9muXBn8EVbuAVk6ZhCDYKovRO70w0Gvtnw,23188
|
131
|
-
prefect/_vendor/starlette/endpoints.py,sha256=00KnI8grT2xxv1jERCvAgqwVxRDOo8hrqpFHnKow9xs,5319
|
132
|
-
prefect/_vendor/starlette/exceptions.py,sha256=ODmYfjgNKWAZwfV8TDVepoEwhv1Kl92KvvwMvEJ04AA,1840
|
133
|
-
prefect/_vendor/starlette/formparsers.py,sha256=aNoQl0CPI7pYnvae2k0KB2jNnv6mQJL-N2FuhRhPLW4,10450
|
134
|
-
prefect/_vendor/starlette/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
135
|
-
prefect/_vendor/starlette/requests.py,sha256=dytpLA1l9oVb-u98i4caDI1z4-XtPCe1jzjFajlQWa8,10899
|
136
|
-
prefect/_vendor/starlette/responses.py,sha256=1l36hyZeTXWYCQ8dYCo-eM_I6KyGuq_qUdtM9GBT3EA,12565
|
137
|
-
prefect/_vendor/starlette/routing.py,sha256=Y0uiRXBQ0uRWs1O63qFD6doqKeh-KhqhuiHU5ovodQs,35696
|
138
|
-
prefect/_vendor/starlette/schemas.py,sha256=TkdT44GEK33J4GrSQfMoXXyAqFcFRA1q4BNM9nKW-lw,5315
|
139
|
-
prefect/_vendor/starlette/staticfiles.py,sha256=YMNSlVSd8s9DLeZSwB607cFezRLCqDbQyksN8ggk-hU,9003
|
140
|
-
prefect/_vendor/starlette/status.py,sha256=lv40V7igYhk_ONySJzUzQ4T3gTgnvNLCOb846ZUONSE,6086
|
141
|
-
prefect/_vendor/starlette/templating.py,sha256=sOHUbxDT9PV_2yiZdhmE2NuJzLBLP0IUY0nM88T5sf8,9065
|
142
|
-
prefect/_vendor/starlette/testclient.py,sha256=Gdt9Wx_XjgxV2qMiPjarHGajIPKpUprmKfNjvA0J19I,29899
|
143
|
-
prefect/_vendor/starlette/types.py,sha256=GV42Vulsf4gkrP2KlmTlQRtg2ftSDyFQWnuplpdD7bY,1129
|
144
|
-
prefect/_vendor/starlette/websockets.py,sha256=o6ThDsCIFj5bZDlI5GYPH76ZQjIh_tz_Xpq1TGXdw1w,7473
|
145
|
-
prefect/_vendor/starlette/middleware/__init__.py,sha256=eq7IMsjLes9Z0NAhRPNUc5eO-QG9WMOwZ5Gx-lST200,558
|
146
|
-
prefect/_vendor/starlette/middleware/authentication.py,sha256=_JbkMAd-02LwiCxeD4k6AYuOXObnajTrQCaISXu6enc,1849
|
147
|
-
prefect/_vendor/starlette/middleware/base.py,sha256=ukFfSHY0-Hb20LHFWS6vsYG92NGa8yLX7q2wXfqfFW8,8891
|
148
|
-
prefect/_vendor/starlette/middleware/cors.py,sha256=4XAVMOzzyklcucYdXNurIA--ghwRsLbLk13jiIraUXM,7123
|
149
|
-
prefect/_vendor/starlette/middleware/errors.py,sha256=OLYupfLJDx7TWSe0GykrPug5gzqWsAUcpbJh3JYbPVM,8035
|
150
|
-
prefect/_vendor/starlette/middleware/exceptions.py,sha256=XcAKEWzFLTvekDAoQHZIdNH6iFAsPjBPN0S4S6lFNcg,2917
|
151
|
-
prefect/_vendor/starlette/middleware/gzip.py,sha256=OEZcC4VM3RyKCNgKY-JWYBi6QESC726bzp7h9IQ-wgA,4539
|
152
|
-
prefect/_vendor/starlette/middleware/httpsredirect.py,sha256=NY9QDgsRUeoyxFZbepIx82E4LdRAHXWBZDw3H31RKrw,896
|
153
|
-
prefect/_vendor/starlette/middleware/sessions.py,sha256=ETBQZGQ5gOyfSPpi2Cv2ugEmHxSx4UFuYbsBEJ0O5SI,3636
|
154
|
-
prefect/_vendor/starlette/middleware/trustedhost.py,sha256=fDi67anj2a7MGviC0RAWhp_tn-VgUPFaxxyKiwLCA6A,2272
|
155
|
-
prefect/_vendor/starlette/middleware/wsgi.py,sha256=Ewk1cVDkcoXLVI2ZF0FEZLZCwCDjc0H7PnvWLlxurVY,5266
|
156
|
-
prefect/blocks/__init__.py,sha256=BUfh6gIwA6HEjRyVCAiv0he3M1zfM-oY-JrlBfeWeY8,182
|
157
|
-
prefect/blocks/abstract.py,sha256=AiAs0MC5JKCf0Xg0yofC5Qu2TZ52AjDMP1ntMGuP2dY,16311
|
158
|
-
prefect/blocks/core.py,sha256=PWStXo61GsTmdVgyh1ubEkVatNzCacRyNXyG9caFMM4,43952
|
159
|
-
prefect/blocks/fields.py,sha256=ANOzbNyDCBIvm6ktgbLTMs7JW2Sf6CruyATjAW61ks0,1607
|
160
|
-
prefect/blocks/kubernetes.py,sha256=IN-hZkzIRvqjd_dzPZby3q8p7m2oUWqArBq24BU9cDg,4071
|
161
|
-
prefect/blocks/notifications.py,sha256=LJd2mgV29URqItJyxtWUpdo4wswtm7KyIseuAjV3joI,28132
|
162
|
-
prefect/blocks/system.py,sha256=aIRiFKlXIQ1sMaqniMXYolFsx2IVN3taBMH3KCThB2I,3089
|
163
|
-
prefect/blocks/webhook.py,sha256=VzQ-qcRtW8MMuYEGYwFgt1QXtWedUtVmeTo7iE2UQ78,2008
|
164
|
-
prefect/client/__init__.py,sha256=yJ5FRF9RxNUio2V_HmyKCKw5G6CZO0h8cv6xA_Hkpcc,477
|
165
|
-
prefect/client/base.py,sha256=YSPeE7hV0NCuD6WzoAACDYGFK4Yq35d26pITZ3elNyY,24669
|
166
|
-
prefect/client/cloud.py,sha256=E54OAFr7bY5IXhhMBdjGwLQiR0eU-WWFoEEiOq2l53I,4104
|
167
|
-
prefect/client/collections.py,sha256=I9EgbTg4Fn57gn8vwP_WdDmgnATbx9gfkm2jjhCORjw,1037
|
168
|
-
prefect/client/constants.py,sha256=Z_GG8KF70vbbXxpJuqW5pLnwzujTVeHbcYYRikNmGH0,29
|
169
|
-
prefect/client/orchestration.py,sha256=k_0W9QP0uCamt2FXW3JwZcAEDGS_ArwZx69lKsb02Gg,140180
|
170
|
-
prefect/client/subscriptions.py,sha256=3kqPH3F-CwyrR5wygCpJMjRjM_gcQjd54Qjih6FcLlA,3372
|
171
|
-
prefect/client/utilities.py,sha256=7V4IkfC8x_OZuPXGvtIMmwZCOW63hSY8iVQkuRYTR6g,3079
|
172
|
-
prefect/client/schemas/__init__.py,sha256=KlyqFV-hMulMkNstBn_0ijoHoIwJZaBj6B1r07UmgvE,607
|
173
|
-
prefect/client/schemas/actions.py,sha256=4mq1OXMsXs6aGlXg1G232RNcn0ivAOIgikL0IKs6S-E,27943
|
174
|
-
prefect/client/schemas/filters.py,sha256=gv57m0bHJqL7Ifsc_vAdRODFomaMVcrGXKAahOSBU4w,35598
|
175
|
-
prefect/client/schemas/objects.py,sha256=bA0kAN9fbeiE6yUGX6bRlScheYtg8uxu0eeuC3-3zd8,53309
|
176
|
-
prefect/client/schemas/responses.py,sha256=XAc95g3PRL9UIkH9_VMuv0ECHKdc19guBLmdt5KefkI,15325
|
177
|
-
prefect/client/schemas/schedules.py,sha256=ZF7fFbkcc8rVdx2MxE8DR0av3FUE9qDPjLreEuV8HfM,12193
|
178
|
-
prefect/client/schemas/sorting.py,sha256=EIQ6FUjUWMwk6fn6ckVLQLXOP-GI5kce7ftjUkDFWV0,2490
|
179
|
-
prefect/concurrency/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
|
-
prefect/concurrency/asyncio.py,sha256=39PIbNmbf1VK768X3X1dL-2RDeNiNPGeFqjpVctB-sM,4644
|
181
|
-
prefect/concurrency/events.py,sha256=agci0Y5S0SwZhENgXIG_lbsqh4om9oeU6E_GbtZ55wM,1797
|
182
|
-
prefect/concurrency/services.py,sha256=PQb4cs72lTRz_XEgDEfv4OkpHWC7KAmW_Xd9vpOOuM4,2906
|
183
|
-
prefect/concurrency/sync.py,sha256=QtnPRfVX9GqVyuZOt6W9yJuT9G-PlCSVnxlZKFTjuKY,3271
|
184
|
-
prefect/deployments/__init__.py,sha256=dM866rOEz3BbAN_xaFMHj3Hw1oOFemBTZ2yxVE6IGoY,394
|
185
|
-
prefect/deployments/base.py,sha256=0l2D_laMc3q2Q5nvh-WANv3iDy4Ih5BqcPMNJJbHuP0,16391
|
186
|
-
prefect/deployments/deployments.py,sha256=S9ro-RUNrc2v8uWFkLr3-JE7h3RGC-HO_f5T7xe4ABw,41884
|
187
|
-
prefect/deployments/runner.py,sha256=a2dxc84zCofZFXV47M2zfntqUaoAhGWvf7o0s3MjPws,44772
|
188
|
-
prefect/deployments/schedules.py,sha256=23GDCAKOP-aAEKGappwTrM4HU67ndVH7NR4Dq0neU_U,1884
|
189
|
-
prefect/deployments/steps/__init__.py,sha256=3pZWONAZzenDszqNQT3bmTFilnvjB6xMolMz9tr5pLw,229
|
190
|
-
prefect/deployments/steps/core.py,sha256=Cl6ord01GWEgfPRnirj8QoVvdTgZhzgg06vTWQqg-5k,6626
|
191
|
-
prefect/deployments/steps/pull.py,sha256=VXyMXedH9JNPFQ0Cs54qlTgL1EJ8Y6IbvxPKjAduqpA,7602
|
192
|
-
prefect/deployments/steps/utility.py,sha256=EhoitdNqsQHUL5MBmVyOL9lSwNXweZvFiw03eIkzveU,8134
|
193
|
-
prefect/deprecated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
|
-
prefect/deprecated/data_documents.py,sha256=9BV2eNNTw1aq1q4xQGhYdUoYWiK7jYL5kIMK6DMDBsg,9664
|
195
|
-
prefect/deprecated/packaging/__init__.py,sha256=UsmNuLPYdIVnws2N_uRa53qlWw_5CnunsMMvB-kKW6w,406
|
196
|
-
prefect/deprecated/packaging/base.py,sha256=UyVUL13df5qNkCGLmy36PSu85x3vOK4aeDjZuE52IRM,2635
|
197
|
-
prefect/deprecated/packaging/docker.py,sha256=Fnuwk6Oun59_SHWuDxNhJZwK2mYPH3DyJln4axdOKvk,4849
|
198
|
-
prefect/deprecated/packaging/file.py,sha256=i35iFB-OK-5-x5pO7gWLXoCNY6F7A3wTI0TfMte16OE,2988
|
199
|
-
prefect/deprecated/packaging/orion.py,sha256=3vRudge_XI4JX3aVxtK2QQvfHQ836C2maNJ7P3ONXNE,2633
|
200
|
-
prefect/deprecated/packaging/serializers.py,sha256=kkFNR8_w2C6zI5A1w_-lfbLVFlhn3SJ28i3T3WKBO94,5165
|
201
|
-
prefect/events/__init__.py,sha256=GtKl2bE--pJduTxelH2xy7SadlLJmmis8WR1EYixhuA,2094
|
202
|
-
prefect/events/actions.py,sha256=X72oHY4f_tstup7_Jv8qjSAwhQo3sHcJFaGoRhisVKA,9149
|
203
|
-
prefect/events/clients.py,sha256=cQAEqBebQ1XnmDlZ9tzyrDZW33Rrci3S9xJgo9EznVs,20401
|
204
|
-
prefect/events/filters.py,sha256=Y2gH6EyQTKj2Tj9Nudbjg-nUqrPaIbzAQ2zqKsPCiHc,8245
|
205
|
-
prefect/events/instrument.py,sha256=IhPBjs8n5xaAC_sPo_GfgppNLYWxIoX0l66WlkzQhlw,3715
|
206
|
-
prefect/events/related.py,sha256=WTygrgtmxXWVlLFey5wJqO45BjHcUMeZkUbXGGmBWfE,6831
|
207
|
-
prefect/events/utilities.py,sha256=zEDmxJpg_stwOuZU4wKjOoOaKn1_9EyULEu9v8nUi6I,2632
|
208
|
-
prefect/events/worker.py,sha256=x1mq9ChaAdUdZpq5lJdRu9yuwiocZXpMuGRL1ZEUWW4,3547
|
209
|
-
prefect/events/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
210
|
-
prefect/events/cli/automations.py,sha256=4niz0uaiv-RAAIhhnN-pkRBpp-lR1BSaKlNwDLvJjaU,10934
|
211
|
-
prefect/events/schemas/__init__.py,sha256=YUyTEY9yVEJAOXWLng7-WlgNlTlJ25kDNPey3pXkn4k,169
|
212
|
-
prefect/events/schemas/automations.py,sha256=c5KwMrmCmQBsdEMapcueJs_t6IkufdV3miQO3nwr43Q,14171
|
213
|
-
prefect/events/schemas/deployment_triggers.py,sha256=xCipjdC-Z80BOJksJlDIwAPpRzAxbFUbBroKOeZYQ90,9567
|
214
|
-
prefect/events/schemas/events.py,sha256=Xdk3VRO42j1oe3qiXfhKAEBL-TrvKjn0qZj_jxvI8Rw,9394
|
215
|
-
prefect/events/schemas/labelling.py,sha256=and3kx2SgnwD2MlMiRxNyFCV_CDZvAVvW1X9GDn0a6E,3255
|
216
|
-
prefect/infrastructure/__init__.py,sha256=Fm1Rhc4I7ZfJePpUAl1F4iNEtcDugoT650WXXt6xoCM,770
|
217
|
-
prefect/infrastructure/base.py,sha256=s2nNbwXnqHV-sBy7LeZzV1IVjqAO0zv795HM4RHOvQI,10880
|
218
|
-
prefect/infrastructure/container.py,sha256=gl38tFrym_wHQb0pCtcitMmHlL6eckHKAL3-EAM2Gec,32140
|
219
|
-
prefect/infrastructure/kubernetes.py,sha256=_hU3W4S7ka-KeDONgQvFKdEA6vno4-eAdIhJEq2vb74,35727
|
220
|
-
prefect/infrastructure/process.py,sha256=ZclTVl55ygEItkfB-ARFEIIZW4bk9ImuQzMTFfQNrnE,11324
|
221
|
-
prefect/infrastructure/provisioners/__init__.py,sha256=e9rfFnLqqwjexvYoiRZIY-CEwK-7ZhCQm745Z-Uxon8,1666
|
222
|
-
prefect/infrastructure/provisioners/cloud_run.py,sha256=kqk8yRZ4gfGJLgCEJL8vNYvRyONe2Mc4e_0DHeEb0iM,17658
|
223
|
-
prefect/infrastructure/provisioners/container_instance.py,sha256=KgJ6-vbq32VLCBiYgrCeG68wa6DfJvA2AmJHCeOY5q8,41231
|
224
|
-
prefect/infrastructure/provisioners/ecs.py,sha256=HOURoT3psIUZY1AI-t-l2mT74JdbpW6ORTLG_RxlCyo,47674
|
225
|
-
prefect/infrastructure/provisioners/modal.py,sha256=mLblDjWWszXXMXWXYzkR_5s3nFFL6c3GvVX-VmIeU5A,9035
|
226
|
-
prefect/input/__init__.py,sha256=TPJ9UfG9_SiBze23sQwU1MnWI8AgyEMNihotgTebFQ0,627
|
227
|
-
prefect/input/actions.py,sha256=YfA9E3lFyH12UPNKGrX0fbWC-vZopndvQ4A6fojjh-k,3876
|
228
|
-
prefect/input/run_input.py,sha256=BknFCVcpS9b7Gjywv2-lLBg4JQf7rKnRJIVIxsEbdTg,18697
|
229
|
-
prefect/logging/__init__.py,sha256=zx9f5_dWrR4DbcTOFBpNGOPoCZ1QcPFudr7zxb2XRpA,148
|
230
|
-
prefect/logging/configuration.py,sha256=bYqFJm0QgLz92Dub1Lbl3JONjjm0lTK149pNAGbxPdM,3467
|
231
|
-
prefect/logging/filters.py,sha256=9keHLN4-cpnsWcii1qU0RITNi9-m7pOhkJ_t0MtCM4k,1117
|
232
|
-
prefect/logging/formatters.py,sha256=EPppQgqvbsIoSDGZFUqHJj1XdL-dvXGZe4TEcuRtfOI,3996
|
233
|
-
prefect/logging/handlers.py,sha256=zypWVA9EbaKMimRnZWxjmYYmZE04pB7OP5zKwkrOYHQ,10685
|
234
|
-
prefect/logging/highlighters.py,sha256=BpSXOy0n3lFVvlKWa7jC-HetAiClFi9jnQtEq5-rgok,1681
|
235
|
-
prefect/logging/loggers.py,sha256=kfTpM0RIcWm87UBYKggzcv0xeFfbuSIjH_i4pXdAZlo,11485
|
236
|
-
prefect/logging/logging.yml,sha256=UkEewf0c3_dURI2uCU4RrxkhI5Devoa1s93fl7hilcg,3160
|
237
|
-
prefect/pydantic/__init__.py,sha256=BsW32X7fvl44J1JQer1tkEpfleMtL2kL5Uy1KmwWvso,2714
|
238
|
-
prefect/pydantic/main.py,sha256=ups_UULBhCPhB-E7X7-Qgbpor1oJdqChRzpD0ZYQH8A,839
|
239
|
-
prefect/runner/__init__.py,sha256=7U-vAOXFkzMfRz1q8Uv6Otsvc0OrPYLLP44srwkJ_8s,89
|
240
|
-
prefect/runner/runner.py,sha256=OUbLIFHtDYKso5sp6m799qAnu5dpkIQbA3rGutwoCAg,45162
|
241
|
-
prefect/runner/server.py,sha256=kXbKSRG21f44BGqOlWR3dcfKs92begC74aM6GdZ_z4E,10674
|
242
|
-
prefect/runner/storage.py,sha256=QkIDKB5NQzy_hoNgl74JKuo_BtiOR74r_-lhccdJEvI,24850
|
243
|
-
prefect/runner/submit.py,sha256=w53VdsqfwjW-M3e8hUAAoVlNrXsvGuuyGpEN0wi3vX0,8537
|
244
|
-
prefect/runner/utils.py,sha256=G8qv6AwAa43HcgLOo5vDhoXna1xP0HlaMVYEbAv0Pck,3318
|
245
|
-
prefect/runtime/__init__.py,sha256=iYmfK1HmXiXXCQK77wDloOqZmY7SFF5iyr37jRzuf-c,406
|
246
|
-
prefect/runtime/deployment.py,sha256=UWNXH-3-NNVxLCl5XnDKiofo4a5j8w_42ns1OSQMixg,4751
|
247
|
-
prefect/runtime/flow_run.py,sha256=J9VzMiVtgkHIhu5_liusi3efRuCB4TRCKflxWOmieg8,8955
|
248
|
-
prefect/runtime/task_run.py,sha256=_np3pjBHWkvEtSe-QElEAGwUct629vVx_sahPr-H8gM,3402
|
249
|
-
prefect/server/api/collections_data/views/aggregate-worker-metadata.json,sha256=hcS7IWry73QATmzD7qv-uXBmCOrqeKtfIFU46bv-CRs,80259
|
250
|
-
prefect/server/api/static/prefect-logo-mark-gradient.png,sha256=ylRjJkI_JHCw8VbQasNnXQHwZW-sH-IQiUGSD3aWP1E,73430
|
251
|
-
prefect/software/__init__.py,sha256=cn7Hesmkv3unA3NynEiyB0Cj2jAzV17yfwjVsS5Ecso,106
|
252
|
-
prefect/software/base.py,sha256=GV6a5RrLx3JaOg1RI44jZTsI_qbqNWbWF3uVO5csnHM,1464
|
253
|
-
prefect/software/conda.py,sha256=u5dTn0AcJlNq3o1UY-hA02WRT6e7xzA4pE-xiRvfItg,6695
|
254
|
-
prefect/software/pip.py,sha256=WMOo-uVu5Az5N-1lOG9hpW6uSscP__N1hn6Vi3ItJms,4039
|
255
|
-
prefect/software/python.py,sha256=EssQ16aMvWSzzWagtNPfjQLu9ehieRwN0iWeqpBVtRU,1753
|
256
|
-
prefect/types/__init__.py,sha256=aZvlQ2uXl949sJ_khmxSVkRH3o6edo-eJ_GBGMBN5Yg,3134
|
257
|
-
prefect/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
|
-
prefect/utilities/annotations.py,sha256=bXB43j5Zsq5gaBcJe9qnszBlnNwCTwqSTgcu2OkkRLo,2776
|
259
|
-
prefect/utilities/asyncutils.py,sha256=ftu6MaV9qOZ3oCIErrneW07km2BydCezOMzvPUuCMUo,17246
|
260
|
-
prefect/utilities/callables.py,sha256=0hzn4-51a2q1_aQ_QCymnl5NV-P9Zx5Nt0GUJahSAVg,21134
|
261
|
-
prefect/utilities/collections.py,sha256=0v-NNXxYYzkUTCCNDMNB44AnDv9yj35UYouNraCqlo8,15449
|
262
|
-
prefect/utilities/compat.py,sha256=mNQZDnzyKaOqy-OV-DnmH_dc7CNF5nQgW_EsA4xMr7g,906
|
263
|
-
prefect/utilities/context.py,sha256=BThuUW94-IYgFYTeMIM9KMo8ShT3oiI7w5ajZHzU1j0,1377
|
264
|
-
prefect/utilities/dispatch.py,sha256=BSAuYf3uchA6giBB90Z9tsmnR94SAqHZMHl01fRuA64,5467
|
265
|
-
prefect/utilities/dockerutils.py,sha256=O5lIgCej5KGRYU2TC1NzNuIK595uOIWJilhZXYEVtOA,20180
|
266
|
-
prefect/utilities/engine.py,sha256=6O7zYZQfpo6FtsI6n9DUNs-MB7_xLs3iXiCnSukR8qI,26046
|
267
|
-
prefect/utilities/filesystem.py,sha256=M_TeZ1MftjBf7hDLWk-Iphir369TpJ1binMsBKiO9YE,4449
|
268
|
-
prefect/utilities/hashing.py,sha256=EOwZLmoIZImuSTxAvVqInabxJ-4RpEfYeg9e2EDQF8o,1752
|
269
|
-
prefect/utilities/importtools.py,sha256=JteP9zFz-oJyxSVYr63kJ-RpDL2jjTfJMqgYaBst19M,19518
|
270
|
-
prefect/utilities/math.py,sha256=wLwcKVidpNeWQi1TUIWWLHGjlz9UgboX9FUGhx_CQzo,2821
|
271
|
-
prefect/utilities/names.py,sha256=x-stHcF7_tebJPvB1dz-5FvdXJXNBTg2kFZXSnIBBmk,1657
|
272
|
-
prefect/utilities/processutils.py,sha256=yo_GO48pZzgn4A0IK5irTAoqyUCYvWKDSqHXCrtP8c4,14547
|
273
|
-
prefect/utilities/pydantic.py,sha256=3IR73F3gkuRG6HQfCEP9ENIC6qbK6oOFawjsYJfoUkg,9984
|
274
|
-
prefect/utilities/render_swagger.py,sha256=h2UrORVN3f7gM4zurtMnySjQXZIOWbji3uMinpbkl8U,3717
|
275
|
-
prefect/utilities/services.py,sha256=POYQRdvkUs-0dFcgV-BOyII0NFttgW1NjDAJR1bbGqU,6865
|
276
|
-
prefect/utilities/slugify.py,sha256=57Vb14t13F3zm1P65KAu8nVeAz0iJCd1Qc5eMG-R5y8,169
|
277
|
-
prefect/utilities/templating.py,sha256=t32Gcsvvm8ibzdqXwcWzY7JkwftPn73FiiLYEnQWyKM,13237
|
278
|
-
prefect/utilities/text.py,sha256=eXGIsCcZ7h_6hy8T5GDQjL8GiKyktoOqavYub0QjgO4,445
|
279
|
-
prefect/utilities/timeout.py,sha256=nxmuPxROIT-i8gPffpARuxnxu58H0vkmbjTVIgef0_0,805
|
280
|
-
prefect/utilities/visualization.py,sha256=9Pc8ImgnBpnszWTFxYm42cmtHjNEAsGZ8ugkn8w_dJk,6501
|
281
|
-
prefect/utilities/schema_tools/__init__.py,sha256=KsFsTEHQqgp89TkDpjggkgBBywoHQPxbx-m6YQhiNEI,322
|
282
|
-
prefect/utilities/schema_tools/hydration.py,sha256=RNuJK4Vd__V69gdQbaWSVhSkV0AUISfGzH_xd0p6Zh0,8291
|
283
|
-
prefect/utilities/schema_tools/validation.py,sha256=zZHL_UFxAlgaUzi-qsEOrhWtZ7EkFQvPkX_YN1EJNTo,8414
|
284
|
-
prefect/workers/__init__.py,sha256=6el2Q856CuRPa5Hdrbm9QyAWB_ovcT2bImSFsoWI46k,66
|
285
|
-
prefect/workers/base.py,sha256=wCCxTUuU5fIyLOkfjCIFIKi7T60B3-UQsyrq0kJuHjg,45351
|
286
|
-
prefect/workers/block.py,sha256=aYY__uq3v1eq1kkbVukxyhQNbkknaKYo6-_3tcrfKKA,8067
|
287
|
-
prefect/workers/process.py,sha256=pPtCdA7fKQ4OsvoitT-cayZeh5HgLX4xBUYlb2Zad-Q,9475
|
288
|
-
prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
|
289
|
-
prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
|
290
|
-
prefect_client-2.20.4.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
|
291
|
-
prefect_client-2.20.4.dist-info/METADATA,sha256=Xv8N3s6Crb2OcuHHdOlG87aBeW9LQ-CEyOBgiA9Q4O4,7391
|
292
|
-
prefect_client-2.20.4.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
293
|
-
prefect_client-2.20.4.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
|
294
|
-
prefect_client-2.20.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|