prefect-client 2.16.2__py3-none-any.whl → 2.16.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: prefect-client
3
- Version: 2.16.2
3
+ Version: 2.16.3
4
4
  Summary: Workflow orchestration and management.
5
5
  Home-page: https://www.prefect.io
6
6
  Author: Prefect Technologies, Inc.
@@ -43,6 +43,7 @@ Requires-Dist: pydantic[email] !=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.10.0
43
43
  Requires-Dist: python-dateutil <3.0.0,>=2.8.2
44
44
  Requires-Dist: python-slugify <9.0,>=5.0
45
45
  Requires-Dist: pyyaml <7.0.0,>=5.4.1
46
+ Requires-Dist: rfc3339-validator <0.2.0,>=0.1.4
46
47
  Requires-Dist: rich <14.0,>=11.0
47
48
  Requires-Dist: ruamel.yaml >=0.17.0
48
49
  Requires-Dist: sniffio <2.0.0,>=1.3.0
@@ -62,12 +63,12 @@ Requires-Dist: apprise <2.0.0,>=1.1.0 ; extra == 'notifications'
62
63
  <p align="center"><img src="https://github.com/PrefectHQ/prefect/assets/3407835/c654cbc6-63e8-4ada-a92a-efd2f8f24b85" width=1000></p>
63
64
 
64
65
  <p align="center">
65
- <a href="https://pypi.python.org/pypi/prefect/" alt="PyPI version">
66
- <img alt="PyPI" src="https://img.shields.io/pypi/v/prefect?color=0052FF&labelColor=090422"></a>
66
+ <a href="https://pypi.python.org/pypi/prefect-client/" alt="PyPI version">
67
+ <img alt="PyPI" src="https://img.shields.io/pypi/v/prefect-client?color=0052FF&labelColor=090422"></a>
67
68
  <a href="https://github.com/prefecthq/prefect/" alt="Stars">
68
69
  <img src="https://img.shields.io/github/stars/prefecthq/prefect?color=0052FF&labelColor=090422" /></a>
69
- <a href="https://pepy.tech/badge/prefect/" alt="Downloads">
70
- <img src="https://img.shields.io/pypi/dm/prefect?color=0052FF&labelColor=090422" /></a>
70
+ <a href="https://pepy.tech/badge/prefect-client/" alt="Downloads">
71
+ <img src="https://img.shields.io/pypi/dm/prefect-client?color=0052FF&labelColor=090422" /></a>
71
72
  <a href="https://github.com/prefecthq/prefect/pulse" alt="Activity">
72
73
  <img src="https://img.shields.io/github/commit-activity/m/prefecthq/prefect?color=0052FF&labelColor=090422" /></a>
73
74
  <br>
@@ -79,78 +80,80 @@ Requires-Dist: apprise <2.0.0,>=1.1.0 ; extra == 'notifications'
79
80
  <img src="https://img.shields.io/badge/youtube-watch_videos-red.svg?color=0052FF&labelColor=090422&logo=youtube" /></a>
80
81
  </p>
81
82
 
82
- # Prefect
83
+ # prefect-client
83
84
 
84
- Prefect is an orchestration and observability platform for building, observing, and triaging workflows.
85
- It's the simplest way to transform Python code into an interactive workflow application.
85
+ The `prefect-client` package is a minimal-installation of `prefect` which is designed for interacting with Prefect Cloud
86
+ or remote any `prefect` server. It sheds some functionality and dependencies in exchange for a smaller installation size,
87
+ making it ideal for use in lightweight or ephemeral environments. These characteristics make it ideal for use in lambdas
88
+ or other resource-constrained environments.
86
89
 
87
- Prefect allows you to expose your workflows through an API so teams dependent on you can programmatically access your pipelines, business logic, and more.
88
- Prefect also allows you to standardize workflow development and deployment across your organization.
89
-
90
- With Prefect, you can build resilient, dynamic workflows that react to the world around them and recover from unexpected changes.
91
- With just a few decorators, Prefect supercharges your code with features like automatic retries, distributed execution, scheduling, caching, and much more.
92
-
93
- Every activity is tracked and can be monitored with a self-hosted [Prefect server](https://docs.prefect.io/latest/guides/host/) instance or managed [Prefect Cloud](https://www.prefect.io/cloud-vs-oss?utm_source=oss&utm_medium=oss&utm_campaign=oss_gh_repo&utm_term=none&utm_content=none) dashboard.
94
90
 
95
91
  ## Getting started
96
92
 
97
- Prefect requires Python 3.8 or later. To [install Prefect](https://docs.prefect.io/getting-started/installation/), run the following command:
93
+ `prefect-client` shares the same installation requirements as prefect. To install, make sure you are on Python 3.8 or
94
+ later and run the following command:
98
95
 
99
96
  ```bash
100
- pip install prefect
97
+ pip install prefect-client
101
98
  ```
102
99
 
103
- Then create and run a Python file that uses Prefect `flow` and `task` decorators to orchestrate and observe your workflow that fetches the number of GitHub stars from a repository.
100
+ Next, ensure that your `prefect-client` has access to a remote `prefect` server by exporting the `PREFECT_API_KEY`
101
+ (if using Prefect Cloud) and `PREFECT_API_URL` environment variables. Once those are set, use the package in your code as
102
+ you would normally use `prefect`!
103
+
104
+
105
+ For example, to remotely trigger a run a deployment:
104
106
 
105
107
  ```python
106
- from prefect import flow, task
107
- from typing import List
108
- import httpx
108
+ from prefect.deployments import run_deployment
109
109
 
110
110
 
111
- @task(log_prints=True)
112
- def get_stars(repo: str):
113
- url = f"https://api.github.com/repos/{repo}"
114
- count = httpx.get(url).json()["stargazers_count"]
115
- print(f"{repo} has {count} stars!")
111
+ def my_lambda(event):
112
+ ...
113
+ run_deployment(
114
+ name="my-flow/my-deployment",
115
+ parameters={"foo": "bar"},
116
+ timeout=0,
117
+ )
116
118
 
119
+ my_lambda({})
120
+ ```
117
121
 
118
- @flow(name="GitHub Stars")
119
- def github_stars(repos: List[str]):
120
- for repo in repos:
121
- get_stars(repo)
122
+ To emit events in an event driven system:
122
123
 
124
+ ```python
125
+ from prefect.events import emit_event
123
126
 
124
- # run the flow!
125
- if __name__=="__main__":
126
- github_stars(["PrefectHQ/Prefect"])
127
- ```
128
127
 
129
- Fire up the Prefect UI to see what happened:
128
+ def something_happened():
129
+ emit_event("my-event", resource={"prefect.resource.id": "foo.bar"})
130
130
 
131
- ```bash
132
- prefect server start
131
+ something_happened()
133
132
  ```
134
133
 
135
- ![Prefect UI dashboard](/docs/img/ui/cloud-dashboard.png)
136
-
137
- To run your workflow on a schedule, turn it into a deployment and schedule it to run every minute by changing the last line of your script to the following:
138
134
 
135
+ Or just interact with a `prefect` API:
139
136
  ```python
140
- github_stars.serve(name="first-deployment", cron="* * * * *")
141
- ```
137
+ from prefect.client.orchestration import get_client
142
138
 
143
- You now have a server running locally that is looking for scheduled deployments!
144
- Additionally you can run your workflow manually from the UI or CLI - and if you're using Prefect Cloud, you can even run deployments in response to [events](https://docs.prefect.io/latest/concepts/automations/).
145
139
 
146
- ## Prefect Cloud
140
+ async def query_api():
141
+ async with get_client() as client:
142
+ limits = await client.read_concurrency_limits(limit=10, offset=0)
143
+ print(limits)
144
+
145
+
146
+ query_api()
147
+ ```
147
148
 
148
- Stop worrying about your workflows.
149
- Prefect Cloud allows you to centrally deploy, monitor, and manage the data workflows you support. With managed orchestration, automations, and webhooks, all backed by enterprise-class security, build production-ready code quickly and reliably.
150
149
 
151
- Read more about Prefect Cloud [here](https://www.prefect.io/cloud-vs-oss?utm_source=oss&utm_medium=oss&utm_campaign=oss_gh_repo&utm_term=none&utm_content=none) or sign up to [try it for yourself](https://app.prefect.cloud?utm_source=oss&utm_medium=oss&utm_campaign=oss_gh_repo&utm_term=none&utm_content=none).
150
+ ## Known limitations
151
+ By design, `prefect-client` omits all CLI and server components. This means that the CLI is not available for use
152
+ and attempts to access server objects will fail. Furthermore, some classes, methods, and objects may be available
153
+ for import in `prefect-client` but may not be "runnable" if they tap into server-oriented functionality. If you
154
+ encounter such a limitation, feel free to [open an issue](https://github.com/PrefectHQ/prefect/issues/new/choose)
155
+ describing the functionality you are interested in using and we will do our best to make it available.
152
156
 
153
- ![Prefect Automations](/docs/img/ui/automations.png)
154
157
 
155
158
  ## Next steps
156
159
 
@@ -3,11 +3,11 @@ prefect/__init__.py,sha256=CbIj8-fhzFJKbvXPadpc73SwIhNXiR_SVzQW4_k52jY,5339
3
3
  prefect/_version.py,sha256=fQguBh1dzT7Baahj504O5RrsLlSyg3Zrx42OpgdPnFc,22378
4
4
  prefect/agent.py,sha256=b557LEcKxcBrgAGOlEDlOPclAkucDj1RhzywBSYxYpI,27487
5
5
  prefect/context.py,sha256=QK_U3ym-h2i1Y_EOSr4BQeeMN0AIOpG81LQS7k1RiRA,18103
6
- prefect/engine.py,sha256=HxsopWKjLtjjrnCvGJ9PX7QDFGlKnWZmPmfjSwp7jrs,108740
6
+ prefect/engine.py,sha256=ZWu-4oyOeoJ-CWe-Yz3SVNg7GkoMVfVjPu72ZAFLvx4,110024
7
7
  prefect/exceptions.py,sha256=84rpsDLp0cn_v2gE1TnK_NZXh27NJtzgZQtARVKyVEE,10953
8
8
  prefect/filesystems.py,sha256=tRmdyn84rapP4qZYIzoR3uN_zA_qUK6tATQ61fFN3Yo,34776
9
9
  prefect/flow_runs.py,sha256=mFHLavZk1yZ62H3UazuNDBZWAF7AqKttA4rMcHgsVSw,3119
10
- prefect/flows.py,sha256=ITbmDcBx1kqpNQwIb3nuoEnk2qjLsYCFCA_z0ueayt0,69059
10
+ prefect/flows.py,sha256=B4W5kAX3jNjBoYmZQYnZ6XC3_th3F8IKTc5MUiZ8_YI,70123
11
11
  prefect/futures.py,sha256=RaWfYIXtH7RsWxQ5QWTTlAzwtVV8XWpXaZT_hLq35vQ,12590
12
12
  prefect/manifests.py,sha256=xfwEEozSEqPK2Lro4dfgdTnjVbQx-aCECNBnf7vO7ZQ,808
13
13
  prefect/plugins.py,sha256=0C-D3-dKi06JZ44XEGmLjCiAkefbE_lKX-g3urzdbQ4,4163
@@ -15,12 +15,12 @@ prefect/profiles.toml,sha256=1Tz7nKBDTDXL_6KPJSeB7ok0Vx_aQJ_p0AUmbnzDLzw,39
15
15
  prefect/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  prefect/results.py,sha256=FgudRagwoNKVKR5590I4AN0mxgYoyXG_7Q1HVoMXdaU,24731
17
17
  prefect/serializers.py,sha256=sSbe40Ipj-d6VuzBae5k2ao9lkMUZpIXcLtD7f2a7cE,10852
18
- prefect/settings.py,sha256=95fMlWfkCRs263gSBc_lt_OxtVe7H9ux2U4LwDGfRN0,68097
18
+ prefect/settings.py,sha256=4YgZ6LxyWr-WIj5B50K3eXJrtnsbYdlAz9mPDJ4cVCc,68890
19
19
  prefect/states.py,sha256=-Ud4AUom3Qu-HQ4hOLvfVZuuF-b_ibaqtzmL7V949Ac,20839
20
- prefect/task_engine.py,sha256=2y3yPwym5EoxEy1Ry9bicK4NOdZdMdFQbrvZEayLXO4,2275
20
+ prefect/task_engine.py,sha256=_2I7XLwoT_nNhpzTMa_52aQKjsDoaW6WpzwIHYEWZS0,2598
21
21
  prefect/task_runners.py,sha256=HXUg5UqhZRN2QNBqMdGE1lKhwFhT8TaRN75ScgLbnw8,11012
22
22
  prefect/task_server.py,sha256=SKyHYiVEG01CsPYxmYlRN0zlgLTEuyI_XMOPA6i8BrE,9523
23
- prefect/tasks.py,sha256=0yT_zfCZyaJZD5CpMkT9bMjUVVJ2Ndj_32YSMsFkqg4,47802
23
+ prefect/tasks.py,sha256=5-H6n7ErDRUYT2IQodOiuCcSn47U8w5UeK5wRfjwWa8,49034
24
24
  prefect/variables.py,sha256=57h-cJ15ZXWrdQiOnoEQmUVlAe59hmIaa57ZcGNBzao,914
25
25
  prefect/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  prefect/_internal/_logging.py,sha256=HvNHY-8P469o5u4LYEDBTem69XZEt1QUeUaLToijpak,810
@@ -35,8 +35,8 @@ prefect/_internal/concurrency/cancellation.py,sha256=eiVsdG5BE_2HCvkQGzIcZ6Gw4AN
35
35
  prefect/_internal/concurrency/event_loop.py,sha256=rOxUa7e95xP4ionH3o0gRpUzzG6aZMQUituLpMTvTFo,2596
36
36
  prefect/_internal/concurrency/inspection.py,sha256=GWFoSzgs8bZZGNN-Im9sQ-0t0Dqdn8EbwPR1UY3Mhro,3452
37
37
  prefect/_internal/concurrency/primitives.py,sha256=kxCPD9yLtCeqt-JIHjevL4Zt5FvrF_Bam-Ucf41FX6k,2608
38
- prefect/_internal/concurrency/services.py,sha256=Xv3YNAwt8tORLL_1GPVzUtjCJd1I0wnJGIf2fM5q1OQ,11712
39
- prefect/_internal/concurrency/threads.py,sha256=3QZCQFv9_Ac42HkstsCWs0TXpee9Pe6drK5z2FMXPaM,7735
38
+ prefect/_internal/concurrency/services.py,sha256=aggJd4IUSB6ufppRYdRT-36daEg1JSpJCvK635R8meg,11951
39
+ prefect/_internal/concurrency/threads.py,sha256=-tReWZL9_XMkRS35SydAfeePH2vqCqb1CGM8lgrKT1I,7846
40
40
  prefect/_internal/concurrency/waiters.py,sha256=DXTD_bbVEUhcTplYQFX8mGmL6nsqJGEDfvS0TmHmIQk,9475
41
41
  prefect/_internal/pydantic/__init__.py,sha256=ZTFHClaJIxIHpFFIHrZD1rZbWrY-1yyvAvLvwy1IQCk,423
42
42
  prefect/_internal/pydantic/schemas.py,sha256=tsRKq5yEIgiRbWMl3BPnbfNaKyDN6pq8WSs0M8SQMm4,452
@@ -159,8 +159,9 @@ prefect/concurrency/services.py,sha256=LQQXBFNUQTlAnHbdrr6GYcEExpGSaQzb-ZiqKk4rQ
159
159
  prefect/concurrency/sync.py,sha256=AChhkA6hykgnnPmIeOp87jauLL0p_lrSwMwUoeuYprI,2148
160
160
  prefect/deployments/__init__.py,sha256=HcC8IEOMaTz98M8uGsxAGITW11PS744XNsQBFz62Qow,441
161
161
  prefect/deployments/base.py,sha256=8K4V3FXz0Fm5sMSLZ-5jRo59LSgEmtElURXrugVJxv8,21450
162
- prefect/deployments/deployments.py,sha256=vVgNz9M2ykxcsBtv8NVIgctgkbViENIORcSawAX7yzc,40550
163
- prefect/deployments/runner.py,sha256=wqYR76_mqZ-6cdf2EViPtK8FuBfOgvrLsyUeuzV8n4Y,45874
162
+ prefect/deployments/deployments.py,sha256=GadMlcpSq3bxzT43RNPl1iTLRxWXvZMDEsv14hkPBlI,41563
163
+ prefect/deployments/runner.py,sha256=AV8HJfQ6t7mTadAc-ogmyjQY1SqTtEAdOlPNj0EMtqU,45129
164
+ prefect/deployments/schedules.py,sha256=wIzzziQWQ4PI8Un6-AElIsQYgjLR0gWiDlXefqNmTFs,1341
164
165
  prefect/deployments/steps/__init__.py,sha256=3pZWONAZzenDszqNQT3bmTFilnvjB6xMolMz9tr5pLw,229
165
166
  prefect/deployments/steps/core.py,sha256=Mg2F5GBJyO-jBAAP7PGtIu1sZgNsvmw5Jn5Qj-bUlgk,6617
166
167
  prefect/deployments/steps/pull.py,sha256=VXyMXedH9JNPFQ0Cs54qlTgL1EJ8Y6IbvxPKjAduqpA,7602
@@ -173,7 +174,7 @@ prefect/events/clients.py,sha256=6LK82U-ux99ddhb4mc7_JA1wK79yNpikf0Ln6NdDDBE,137
173
174
  prefect/events/filters.py,sha256=vSWHGDCCsi_znQs3gZomCxh-Q498ukn_QHJ7H8q16do,6922
174
175
  prefect/events/instrument.py,sha256=uNiD7AnkfuiwTsCMgNyJURmY9H2tXNfLCb3EC5FL0Qw,3805
175
176
  prefect/events/related.py,sha256=N0o19kTlos1V4L4AgO79Z_k06ZW9bfjSH8Xa9h7lugg,6746
176
- prefect/events/schemas.py,sha256=hXluVgDtEsjYghZhf-MjPhHntmMR6NcJJxU99ZRv2zQ,11643
177
+ prefect/events/schemas.py,sha256=OR_fqi1jgRddgz00AL1tIVVvlN58VVSyaHK7yi2fpO4,18163
177
178
  prefect/events/utilities.py,sha256=gUEJA_kVuYASCqDpGX0HwDW0yczMX0AdgmxXbxhzWbM,2452
178
179
  prefect/events/worker.py,sha256=Z6MZmcCyXZtWi4vEtnFyvnzIEBW7HD14lEH1Crye3gY,2716
179
180
  prefect/infrastructure/__init__.py,sha256=Fm1Rhc4I7ZfJePpUAl1F4iNEtcDugoT650WXXt6xoCM,770
@@ -204,7 +205,7 @@ prefect/packaging/file.py,sha256=LdYUpAJfBzaYABCwVs4jMKVyo2DC6psEFGpwJ-iKUd4,227
204
205
  prefect/packaging/orion.py,sha256=ctWh8s3UztYfOTsZ0sfumebI0dbNDOTriDNXohtEC-k,1935
205
206
  prefect/packaging/serializers.py,sha256=1x5GjcBSYrE-YMmrpYYZi2ObTs7MM6YEM3LS0e6mHAk,6321
206
207
  prefect/runner/__init__.py,sha256=d3DFUXy5BYd8Z4cppNN_6RTSddmr-KfnQ5Yw5vh8WL8,96
207
- prefect/runner/runner.py,sha256=4x9iUj7KyKuGO9yW9LuWgHrfAdv6hbooogYSIHaUS-I,48046
208
+ prefect/runner/runner.py,sha256=OP_RKrgWVKNQwmISmSSGN3oyd5CbrANtOBNHmGyx3Cs,48077
208
209
  prefect/runner/server.py,sha256=xPEgn3NDAWUuXcv62fkr-xV7Bogz9BPMXzsNM6ryDMQ,10647
209
210
  prefect/runner/storage.py,sha256=iZey8Am51c1fZFpS9iVXWYpKiM_lSocvaJEOZVExhvA,22428
210
211
  prefect/runner/submit.py,sha256=w53VdsqfwjW-M3e8hUAAoVlNrXsvGuuyGpEN0wi3vX0,8537
@@ -213,7 +214,7 @@ prefect/runtime/__init__.py,sha256=iYmfK1HmXiXXCQK77wDloOqZmY7SFF5iyr37jRzuf-c,4
213
214
  prefect/runtime/deployment.py,sha256=UWNXH-3-NNVxLCl5XnDKiofo4a5j8w_42ns1OSQMixg,4751
214
215
  prefect/runtime/flow_run.py,sha256=aFM3e9xqpeZQ4WkvZQXD0lmXu2fNVVVA1etSN3ZI9aE,8444
215
216
  prefect/runtime/task_run.py,sha256=_np3pjBHWkvEtSe-QElEAGwUct629vVx_sahPr-H8gM,3402
216
- prefect/server/api/collections_data/views/aggregate-worker-metadata.json,sha256=ACXX8Js8HB8Ch3v_dKNshukMN94vHcYM4Jrz0pLr-rA,77193
217
+ prefect/server/api/collections_data/views/aggregate-worker-metadata.json,sha256=MfSqJCoUe1lEdSqFT8fy4qJAaO9jauZoE-vZ_9re0IU,77799
217
218
  prefect/server/api/static/prefect-logo-mark-gradient.png,sha256=ylRjJkI_JHCw8VbQasNnXQHwZW-sH-IQiUGSD3aWP1E,73430
218
219
  prefect/software/__init__.py,sha256=cn7Hesmkv3unA3NynEiyB0Cj2jAzV17yfwjVsS5Ecso,106
219
220
  prefect/software/base.py,sha256=GV6a5RrLx3JaOg1RI44jZTsI_qbqNWbWF3uVO5csnHM,1464
@@ -243,14 +244,17 @@ prefect/utilities/templating.py,sha256=t32Gcsvvm8ibzdqXwcWzY7JkwftPn73FiiLYEnQWy
243
244
  prefect/utilities/text.py,sha256=eXGIsCcZ7h_6hy8T5GDQjL8GiKyktoOqavYub0QjgO4,445
244
245
  prefect/utilities/validation.py,sha256=60AseIr0F1XlygAuqweswz288i7YP4LlLY00s1dM2cg,1985
245
246
  prefect/utilities/visualization.py,sha256=iGkYtroroYY9Rsiw1ok1bLv9FwsNyjtiK-0vBPL-ZWI,6491
247
+ prefect/utilities/schema_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
248
+ prefect/utilities/schema_tools/hydration.py,sha256=SS53N9afZHWT7enJND3Hwnl6vdSnvr-SrJIYKvV_F-o,5823
249
+ prefect/utilities/schema_tools/validation.py,sha256=b4ZsyrUlU7riaQP9NMQ6FlayzG46SrSE7pKGNCFWscM,7974
246
250
  prefect/workers/__init__.py,sha256=6el2Q856CuRPa5Hdrbm9QyAWB_ovcT2bImSFsoWI46k,66
247
251
  prefect/workers/base.py,sha256=YmWJXJiiXH1fQKL9KX873jn9h1XEQJWTAEimNNnsSE4,44488
248
252
  prefect/workers/block.py,sha256=lvKlaWdA-DCCXDX23HHK9M5urEq4x2wmpKtU9ft3a7k,7767
249
253
  prefect/workers/process.py,sha256=Kxj_eZYh6R8t8253LYIIafiG7dodCF8RZABwd3Ng_R0,10253
250
254
  prefect/workers/server.py,sha256=WVZJxR8nTMzK0ov0BD0xw5OyQpT26AxlXbsGQ1OrxeQ,1551
251
255
  prefect/workers/utilities.py,sha256=VfPfAlGtTuDj0-Kb8WlMgAuOfgXCdrGAnKMapPSBrwc,2483
252
- prefect_client-2.16.2.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
253
- prefect_client-2.16.2.dist-info/METADATA,sha256=2XcD_kjMRyPFiNG1FzIMU1A7kTdpdvw6TWLoqqjmlCU,8168
254
- prefect_client-2.16.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
255
- prefect_client-2.16.2.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
256
- prefect_client-2.16.2.dist-info/RECORD,,
256
+ prefect_client-2.16.3.dist-info/LICENSE,sha256=MCxsn8osAkzfxKC4CC_dLcUkU8DZLkyihZ8mGs3Ah3Q,11357
257
+ prefect_client-2.16.3.dist-info/METADATA,sha256=IHvy1_HivYkCVT3e1u3iNJLV4xbWfzU5wE3FVAsZ-bU,7299
258
+ prefect_client-2.16.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
259
+ prefect_client-2.16.3.dist-info/top_level.txt,sha256=MJZYJgFdbRc2woQCeB4vM6T33tr01TmkEhRcns6H_H4,8
260
+ prefect_client-2.16.3.dist-info/RECORD,,