payi 0.1.0a1__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.

Potentially problematic release.


This version of payi might be problematic. Click here for more details.

Files changed (54) hide show
  1. payi/__init__.py +83 -0
  2. payi/_base_client.py +2006 -0
  3. payi/_client.py +414 -0
  4. payi/_compat.py +222 -0
  5. payi/_constants.py +14 -0
  6. payi/_exceptions.py +108 -0
  7. payi/_files.py +127 -0
  8. payi/_models.py +739 -0
  9. payi/_qs.py +150 -0
  10. payi/_resource.py +43 -0
  11. payi/_response.py +820 -0
  12. payi/_streaming.py +333 -0
  13. payi/_types.py +220 -0
  14. payi/_utils/__init__.py +52 -0
  15. payi/_utils/_logs.py +25 -0
  16. payi/_utils/_proxy.py +63 -0
  17. payi/_utils/_reflection.py +8 -0
  18. payi/_utils/_streams.py +12 -0
  19. payi/_utils/_sync.py +81 -0
  20. payi/_utils/_transform.py +382 -0
  21. payi/_utils/_typing.py +120 -0
  22. payi/_utils/_utils.py +402 -0
  23. payi/_version.py +4 -0
  24. payi/lib/.keep +4 -0
  25. payi/py.typed +0 -0
  26. payi/resources/__init__.py +33 -0
  27. payi/resources/budgets/__init__.py +33 -0
  28. payi/resources/budgets/budgets.py +717 -0
  29. payi/resources/budgets/tags.py +529 -0
  30. payi/resources/ingest_requests.py +187 -0
  31. payi/types/__init__.py +13 -0
  32. payi/types/budget_create_params.py +26 -0
  33. payi/types/budget_history_response.py +110 -0
  34. payi/types/budget_list_params.py +25 -0
  35. payi/types/budget_response.py +98 -0
  36. payi/types/budget_update_params.py +17 -0
  37. payi/types/budgets/__init__.py +13 -0
  38. payi/types/budgets/budget_tags_response.py +18 -0
  39. payi/types/budgets/tag_create_params.py +16 -0
  40. payi/types/budgets/tag_create_response.py +9 -0
  41. payi/types/budgets/tag_delete_response.py +9 -0
  42. payi/types/budgets/tag_list_response.py +9 -0
  43. payi/types/budgets/tag_remove_params.py +16 -0
  44. payi/types/budgets/tag_remove_response.py +9 -0
  45. payi/types/budgets/tag_update_params.py +16 -0
  46. payi/types/budgets/tag_update_response.py +9 -0
  47. payi/types/default_response.py +13 -0
  48. payi/types/ingest_request_create_params.py +27 -0
  49. payi/types/paged_budget_list.py +110 -0
  50. payi/types/successful_proxy_result.py +43 -0
  51. payi-0.1.0a1.dist-info/METADATA +355 -0
  52. payi-0.1.0a1.dist-info/RECORD +54 -0
  53. payi-0.1.0a1.dist-info/WHEEL +4 -0
  54. payi-0.1.0a1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,110 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List, Optional
4
+ from datetime import datetime
5
+ from typing_extensions import Literal
6
+
7
+ from pydantic import Field as FieldInfo
8
+
9
+ from .._models import BaseModel
10
+
11
+ __all__ = [
12
+ "PagedBudgetList",
13
+ "Item",
14
+ "ItemTotals",
15
+ "ItemTotalsCost",
16
+ "ItemTotalsCostInputCost",
17
+ "ItemTotalsCostOutputCost",
18
+ "ItemTotalsCostTotalCost",
19
+ "ItemTotalsRequests",
20
+ ]
21
+
22
+
23
+ class ItemTotalsCostInputCost(BaseModel):
24
+ base: Optional[float] = None
25
+
26
+ overrun_base: Optional[float] = None
27
+
28
+
29
+ class ItemTotalsCostOutputCost(BaseModel):
30
+ base: Optional[float] = None
31
+
32
+ overrun_base: Optional[float] = None
33
+
34
+
35
+ class ItemTotalsCostTotalCost(BaseModel):
36
+ base: Optional[float] = None
37
+
38
+ overrun_base: Optional[float] = None
39
+
40
+
41
+ class ItemTotalsCost(BaseModel):
42
+ input_cost: Optional[ItemTotalsCostInputCost] = FieldInfo(alias="inputCost", default=None)
43
+
44
+ output_cost: Optional[ItemTotalsCostOutputCost] = FieldInfo(alias="outputCost", default=None)
45
+
46
+ total_cost: Optional[ItemTotalsCostTotalCost] = FieldInfo(alias="totalCost", default=None)
47
+
48
+
49
+ class ItemTotalsRequests(BaseModel):
50
+ blocked: Optional[int] = None
51
+
52
+ error: Optional[int] = None
53
+
54
+ exceeded: Optional[int] = None
55
+
56
+ failed: Optional[int] = None
57
+
58
+ successful: Optional[int] = None
59
+
60
+ total: Optional[int] = None
61
+
62
+
63
+ class ItemTotals(BaseModel):
64
+ cost: Optional[ItemTotalsCost] = None
65
+
66
+ requests: Optional[ItemTotalsRequests] = None
67
+
68
+
69
+ class Item(BaseModel):
70
+ base_cost_estimate: Literal["Max"]
71
+
72
+ budget_creation_timestamp: datetime
73
+
74
+ budget_id: str
75
+
76
+ budget_name: str
77
+
78
+ budget_response_type: Literal["Block", "Allow"]
79
+
80
+ budget_type: Literal["Conservative", "Liberal"]
81
+
82
+ budget_update_timestamp: datetime
83
+
84
+ currency: str
85
+
86
+ max: float
87
+
88
+ totals: ItemTotals
89
+
90
+ budget_tags: Optional[List[str]] = None
91
+
92
+
93
+ class PagedBudgetList(BaseModel):
94
+ current_page: Optional[int] = FieldInfo(alias="currentPage", default=None)
95
+
96
+ has_next_page: Optional[bool] = FieldInfo(alias="hasNextPage", default=None)
97
+
98
+ has_previous_page: Optional[bool] = FieldInfo(alias="hasPreviousPage", default=None)
99
+
100
+ items: Optional[List[Item]] = None
101
+
102
+ message: Optional[str] = None
103
+
104
+ page_size: Optional[int] = FieldInfo(alias="pageSize", default=None)
105
+
106
+ request_id: Optional[str] = None
107
+
108
+ total_count: Optional[int] = FieldInfo(alias="totalCount", default=None)
109
+
110
+ total_pages: Optional[int] = FieldInfo(alias="totalPages", default=None)
@@ -0,0 +1,43 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from .._models import BaseModel
6
+
7
+ __all__ = ["SuccessfulProxyResult", "Budgets", "Cost", "CostInput", "CostOutput", "CostTotal"]
8
+
9
+
10
+ class Budgets(BaseModel):
11
+ state: Optional[str] = None
12
+
13
+
14
+ class CostInput(BaseModel):
15
+ base: Optional[float] = None
16
+
17
+
18
+ class CostOutput(BaseModel):
19
+ base: Optional[float] = None
20
+
21
+
22
+ class CostTotal(BaseModel):
23
+ base: Optional[float] = None
24
+
25
+
26
+ class Cost(BaseModel):
27
+ currency: Optional[str] = None
28
+
29
+ input: Optional[CostInput] = None
30
+
31
+ output: Optional[CostOutput] = None
32
+
33
+ total: Optional[CostTotal] = None
34
+
35
+
36
+ class SuccessfulProxyResult(BaseModel):
37
+ budgets: Optional[Dict[str, Budgets]] = None
38
+
39
+ cost: Optional[Cost] = None
40
+
41
+ request_id: Optional[str] = None
42
+
43
+ request_tags: Optional[List[str]] = None
@@ -0,0 +1,355 @@
1
+ Metadata-Version: 2.3
2
+ Name: payi
3
+ Version: 0.1.0a1
4
+ Summary: The official Python library for the payi API
5
+ Project-URL: Homepage, https://github.com/Pay-i/pay-i-python
6
+ Project-URL: Repository, https://github.com/Pay-i/pay-i-python
7
+ Author-email: Payi <support@payi.com>
8
+ License-Expression: Apache-2.0
9
+ License-File: LICENSE
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Operating System :: MacOS
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Operating System :: POSIX
16
+ Classifier: Operating System :: POSIX :: Linux
17
+ Classifier: Programming Language :: Python :: 3.7
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
+ Classifier: Typing :: Typed
25
+ Requires-Python: >=3.7
26
+ Requires-Dist: anyio<5,>=3.5.0
27
+ Requires-Dist: cached-property; python_version < '3.8'
28
+ Requires-Dist: distro<2,>=1.7.0
29
+ Requires-Dist: httpx<1,>=0.23.0
30
+ Requires-Dist: pydantic<3,>=1.9.0
31
+ Requires-Dist: sniffio
32
+ Requires-Dist: typing-extensions<5,>=4.7
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Payi Python API library
36
+
37
+ [![PyPI version](https://img.shields.io/pypi/v/payi.svg)](https://pypi.org/project/payi/)
38
+
39
+ The Payi Python library provides convenient access to the Payi REST API from any Python 3.7+
40
+ application. The library includes type definitions for all request params and response fields,
41
+ and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
42
+
43
+ It is generated with [Stainless](https://www.stainlessapi.com/).
44
+
45
+ ## Documentation
46
+
47
+ The REST API documentation can be found [on docs.payi.com](https://docs.payi.com). The full API of this library can be found in [api.md](https://github.com/Pay-i/pay-i-python/tree/main/api.md).
48
+
49
+ ## Installation
50
+
51
+ ```sh
52
+ # install from PyPI
53
+ pip install --pre payi
54
+ ```
55
+
56
+ ## Usage
57
+
58
+ The full API of this library can be found in [api.md](https://github.com/Pay-i/pay-i-python/tree/main/api.md).
59
+
60
+ ```python
61
+ import os
62
+ from payi import Payi
63
+
64
+ client = Payi(
65
+ # This is the default and can be omitted
66
+ payi_api_key=os.environ.get("PAYI_API_KEY"),
67
+ )
68
+
69
+ budget_response = client.budgets.create(
70
+ budget_name="x",
71
+ max=0,
72
+ )
73
+ print(budget_response.request_id)
74
+ ```
75
+
76
+ While you can provide a `payi_api_key` keyword argument,
77
+ we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
78
+ to add `PAYI_API_KEY="My Payi API Key"` to your `.env` file
79
+ so that your Payi API Key is not stored in source control.
80
+
81
+ ## Async usage
82
+
83
+ Simply import `AsyncPayi` instead of `Payi` and use `await` with each API call:
84
+
85
+ ```python
86
+ import os
87
+ import asyncio
88
+ from payi import AsyncPayi
89
+
90
+ client = AsyncPayi(
91
+ # This is the default and can be omitted
92
+ payi_api_key=os.environ.get("PAYI_API_KEY"),
93
+ )
94
+
95
+
96
+ async def main() -> None:
97
+ budget_response = await client.budgets.create(
98
+ budget_name="x",
99
+ max=0,
100
+ )
101
+ print(budget_response.request_id)
102
+
103
+
104
+ asyncio.run(main())
105
+ ```
106
+
107
+ Functionality between the synchronous and asynchronous clients is otherwise identical.
108
+
109
+ ## Using types
110
+
111
+ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
112
+
113
+ - Serializing back into JSON, `model.to_json()`
114
+ - Converting to a dictionary, `model.to_dict()`
115
+
116
+ Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
117
+
118
+ ## Handling errors
119
+
120
+ When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `payi.APIConnectionError` is raised.
121
+
122
+ When the API returns a non-success status code (that is, 4xx or 5xx
123
+ response), a subclass of `payi.APIStatusError` is raised, containing `status_code` and `response` properties.
124
+
125
+ All errors inherit from `payi.APIError`.
126
+
127
+ ```python
128
+ import payi
129
+ from payi import Payi
130
+
131
+ client = Payi()
132
+
133
+ try:
134
+ client.budgets.create(
135
+ budget_name="x",
136
+ max=0,
137
+ )
138
+ except payi.APIConnectionError as e:
139
+ print("The server could not be reached")
140
+ print(e.__cause__) # an underlying Exception, likely raised within httpx.
141
+ except payi.RateLimitError as e:
142
+ print("A 429 status code was received; we should back off a bit.")
143
+ except payi.APIStatusError as e:
144
+ print("Another non-200-range status code was received")
145
+ print(e.status_code)
146
+ print(e.response)
147
+ ```
148
+
149
+ Error codes are as followed:
150
+
151
+ | Status Code | Error Type |
152
+ | ----------- | -------------------------- |
153
+ | 400 | `BadRequestError` |
154
+ | 401 | `AuthenticationError` |
155
+ | 403 | `PermissionDeniedError` |
156
+ | 404 | `NotFoundError` |
157
+ | 422 | `UnprocessableEntityError` |
158
+ | 429 | `RateLimitError` |
159
+ | >=500 | `InternalServerError` |
160
+ | N/A | `APIConnectionError` |
161
+
162
+ ### Retries
163
+
164
+ Certain errors are automatically retried 2 times by default, with a short exponential backoff.
165
+ Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
166
+ 429 Rate Limit, and >=500 Internal errors are all retried by default.
167
+
168
+ You can use the `max_retries` option to configure or disable retry settings:
169
+
170
+ ```python
171
+ from payi import Payi
172
+
173
+ # Configure the default for all requests:
174
+ client = Payi(
175
+ # default is 2
176
+ max_retries=0,
177
+ )
178
+
179
+ # Or, configure per-request:
180
+ client.with_options(max_retries=5).budgets.create(
181
+ budget_name="x",
182
+ max=0,
183
+ )
184
+ ```
185
+
186
+ ### Timeouts
187
+
188
+ By default requests time out after 1 minute. You can configure this with a `timeout` option,
189
+ which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/#fine-tuning-the-configuration) object:
190
+
191
+ ```python
192
+ from payi import Payi
193
+
194
+ # Configure the default for all requests:
195
+ client = Payi(
196
+ # 20 seconds (default is 1 minute)
197
+ timeout=20.0,
198
+ )
199
+
200
+ # More granular control:
201
+ client = Payi(
202
+ timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
203
+ )
204
+
205
+ # Override per-request:
206
+ client.with_options(timeout=5.0).budgets.create(
207
+ budget_name="x",
208
+ max=0,
209
+ )
210
+ ```
211
+
212
+ On timeout, an `APITimeoutError` is thrown.
213
+
214
+ Note that requests that time out are [retried twice by default](https://github.com/Pay-i/pay-i-python/tree/main/#retries).
215
+
216
+ ## Advanced
217
+
218
+ ### Logging
219
+
220
+ We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
221
+
222
+ You can enable logging by setting the environment variable `PAYI_LOG` to `debug`.
223
+
224
+ ```shell
225
+ $ export PAYI_LOG=debug
226
+ ```
227
+
228
+ ### How to tell whether `None` means `null` or missing
229
+
230
+ In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
231
+
232
+ ```py
233
+ if response.my_field is None:
234
+ if 'my_field' not in response.model_fields_set:
235
+ print('Got json like {}, without a "my_field" key present at all.')
236
+ else:
237
+ print('Got json like {"my_field": null}.')
238
+ ```
239
+
240
+ ### Accessing raw response data (e.g. headers)
241
+
242
+ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
243
+
244
+ ```py
245
+ from payi import Payi
246
+
247
+ client = Payi()
248
+ response = client.budgets.with_raw_response.create(
249
+ budget_name="x",
250
+ max=0,
251
+ )
252
+ print(response.headers.get('X-My-Header'))
253
+
254
+ budget = response.parse() # get the object that `budgets.create()` would have returned
255
+ print(budget.request_id)
256
+ ```
257
+
258
+ These methods return an [`APIResponse`](https://github.com/Pay-i/pay-i-python/tree/main/src/payi/_response.py) object.
259
+
260
+ The async client returns an [`AsyncAPIResponse`](https://github.com/Pay-i/pay-i-python/tree/main/src/payi/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
261
+
262
+ #### `.with_streaming_response`
263
+
264
+ The above interface eagerly reads the full response body when you make the request, which may not always be what you want.
265
+
266
+ To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
267
+
268
+ ```python
269
+ with client.budgets.with_streaming_response.create(
270
+ budget_name="x",
271
+ max=0,
272
+ ) as response:
273
+ print(response.headers.get("X-My-Header"))
274
+
275
+ for line in response.iter_lines():
276
+ print(line)
277
+ ```
278
+
279
+ The context manager is required so that the response will reliably be closed.
280
+
281
+ ### Making custom/undocumented requests
282
+
283
+ This library is typed for convenient access to the documented API.
284
+
285
+ If you need to access undocumented endpoints, params, or response properties, the library can still be used.
286
+
287
+ #### Undocumented endpoints
288
+
289
+ To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
290
+ http verbs. Options on the client will be respected (such as retries) will be respected when making this
291
+ request.
292
+
293
+ ```py
294
+ import httpx
295
+
296
+ response = client.post(
297
+ "/foo",
298
+ cast_to=httpx.Response,
299
+ body={"my_param": True},
300
+ )
301
+
302
+ print(response.headers.get("x-foo"))
303
+ ```
304
+
305
+ #### Undocumented request params
306
+
307
+ If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
308
+ options.
309
+
310
+ #### Undocumented response properties
311
+
312
+ To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
313
+ can also get all the extra fields on the Pydantic model as a dict with
314
+ [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
315
+
316
+ ### Configuring the HTTP client
317
+
318
+ You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
319
+
320
+ - Support for proxies
321
+ - Custom transports
322
+ - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
323
+
324
+ ```python
325
+ from payi import Payi, DefaultHttpxClient
326
+
327
+ client = Payi(
328
+ # Or use the `PAYI_BASE_URL` env var
329
+ base_url="http://my.test.server.example.com:8083",
330
+ http_client=DefaultHttpxClient(
331
+ proxies="http://my.test.proxy.example.com",
332
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
333
+ ),
334
+ )
335
+ ```
336
+
337
+ ### Managing HTTP resources
338
+
339
+ By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
340
+
341
+ ## Versioning
342
+
343
+ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
344
+
345
+ 1. Changes that only affect static types, without breaking runtime behavior.
346
+ 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_.
347
+ 3. Changes that we do not expect to impact the vast majority of users in practice.
348
+
349
+ We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
350
+
351
+ We are keen for your feedback; please open an [issue](https://www.github.com/Pay-i/pay-i-python/issues) with questions, bugs, or suggestions.
352
+
353
+ ## Requirements
354
+
355
+ Python 3.7 or higher.
@@ -0,0 +1,54 @@
1
+ payi/__init__.py,sha256=LWpfR6WSMPTnmmx3ToqqZ0A8CNduLcuxY1SSOqhPxuk,2381
2
+ payi/_base_client.py,sha256=70yaoCPiDyAppE3S2nKsAfpKOztY3SEjlhJq2898umc,65090
3
+ payi/_client.py,sha256=3TEqpqgp7k3b6dUCJoi0zPctQfqXJqMhgC-2qszwgqY,15794
4
+ payi/_compat.py,sha256=m0I0haqFZuVxd5m227_8nNmvA1saXyuNJ7BjidX_PTE,6389
5
+ payi/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
6
+ payi/_exceptions.py,sha256=ItygKNrNXIVY0H6LsGVZvFuAHB3Vtm_VZXmWzCnpHy0,3216
7
+ payi/_files.py,sha256=me2eyWzJCM4YKh10Gzkxw4YyIEJoikzD4BVu_20UUc0,3565
8
+ payi/_models.py,sha256=kbTvpEMoo6a_660jyvLNARXzS7fsSlg-O0yQrjJpdBs,26876
9
+ payi/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
+ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
11
+ payi/_response.py,sha256=W6pADUzbnMFGnVzGY4M3FkX9uvw8AFSMTPZKPgQ_TV4,28363
12
+ payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
13
+ payi/_types.py,sha256=04q-KHD-qZ1xlfwEb_muyIHWmD-nZ-KxnRxA_QEjqNk,6125
14
+ payi/_version.py,sha256=e2If7JaNfvxUOJifzuPWASTV-94TV2d16oG-vZydnAs,164
15
+ payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ payi/_utils/__init__.py,sha256=q5QC6ZmVNli9QaCqTlp9VrbQyjIU9EzmCn044UhHSIk,1919
17
+ payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
18
+ payi/_utils/_proxy.py,sha256=DjcB-BBIRagSbMut2pF_jZavjda9sPvmQCKtVXBhs0I,1910
19
+ payi/_utils/_reflection.py,sha256=Xloc_oanCC3gmAVBRhlMYtvYeLNZGi46gGWhDt9FtKI,275
20
+ payi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
21
+ payi/_utils/_sync.py,sha256=9ex9pfOyd8xAF1LxpFx4IkqL8k0vk8srE2Ee-OTMQ0A,2840
22
+ payi/_utils/_transform.py,sha256=NCz3q9_O-vuj60xVe-qzhEQ8uJWlZWJTsM-GwHDccf8,12958
23
+ payi/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
24
+ payi/_utils/_utils.py,sha256=FaZdW0tWil7IERdxUfKt7pVcyXL2aCnR3lo73q66qgI,11447
25
+ payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
26
+ payi/resources/__init__.py,sha256=-y_brRr5l-JY1Yw9Krm_z0NMPR56m5ar0EUC3ZeQaus,1120
27
+ payi/resources/ingest_requests.py,sha256=UWI3dA9hfDDmA5yWdb_P98G1ic5NZtdnufuspOZqRlM,6493
28
+ payi/resources/budgets/__init__.py,sha256=w1UhOdDXtUH4A91ME5Tw2nr9bRvPJyJY1YWiVVy7jj0,989
29
+ payi/resources/budgets/budgets.py,sha256=mFvPXjXyDafBrFDsR4ARrohOBkcTe9MA3YVz8uHvSaI,26684
30
+ payi/resources/budgets/tags.py,sha256=zF9N3Oqo_3ydRHMCJpv_YlPZYUci1WfJ0swZFXAtn4U,20051
31
+ payi/types/__init__.py,sha256=aGTmOKZy8UYiOqbLBNUrA9XVWqczs0_3x3qGQX175Xw,800
32
+ payi/types/budget_create_params.py,sha256=RBfpVn_xLnZ0dQQU6uypsdcAN8Hw0NlBP67G7VeBx04,680
33
+ payi/types/budget_history_response.py,sha256=SeOabYz6xQvH4YkJSejbk_dUB49LZy7Y2MXZFPvrYMY,2702
34
+ payi/types/budget_list_params.py,sha256=fZisMqFSaIytDwHb_TNyHERnMgMKxz6SrVy914vfVak,765
35
+ payi/types/budget_response.py,sha256=yXDXIrespfRuNreWdWmlCITO6VvLC4YZn0nzXw_BGzo,2072
36
+ payi/types/budget_update_params.py,sha256=ceAaCqoERpoKeqTOv6NY1yjXrcnZMq3BSmUxy2dI7JQ,443
37
+ payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
38
+ payi/types/ingest_request_create_params.py,sha256=5uLPGwExcBQ6dcoA_YJbBKfwLvgxjKUMFS31f85Z9UY,650
39
+ payi/types/paged_budget_list.py,sha256=HNm834IAAy3eRNz0BjZwcbD9e-I8unWWKWxiSnlijWY,2553
40
+ payi/types/successful_proxy_result.py,sha256=j8kQu8LAcfR3XuforqWDsYm1Bx6BQxCrezmE-3GnCWc,893
41
+ payi/types/budgets/__init__.py,sha256=8lpRHXZQOc9ADCphhCB0JhQAH96lBIc68LbhlJn5Kys,750
42
+ payi/types/budgets/budget_tags_response.py,sha256=o3zaMs9b0gJqKrWuui3ohUVsR2cwNGR0yttBclgXapo,513
43
+ payi/types/budgets/tag_create_params.py,sha256=dKpX2tPtcJuiyXJcYsRni4wq_EwU7F05z35qovssleA,452
44
+ payi/types/budgets/tag_create_response.py,sha256=2SWGig_rx8J5fEN0XUX2t6tZLnS5OQ1PcD5Bxc46rdY,244
45
+ payi/types/budgets/tag_delete_response.py,sha256=JuXfffM_poGX_K1lLWCkW8yUdUiod1XNc8s-iN-RYdY,244
46
+ payi/types/budgets/tag_list_response.py,sha256=9PUbi3clybFPD7Xo4Op6GmSjFet2gw7P2Kyx7IJg0_s,240
47
+ payi/types/budgets/tag_remove_params.py,sha256=dO7yymyt2EM7kmLCr-mdR4IOGVcIpOPNCUCv7jdNEDE,452
48
+ payi/types/budgets/tag_remove_response.py,sha256=Gc_eBGGSx6Afa51g-S5AkXqwmRcGMjshiNSBsthDZJc,244
49
+ payi/types/budgets/tag_update_params.py,sha256=ymYX9umkDg5_l2UlhW8uJpA3CfTvoRkO25mj9vj98sQ,452
50
+ payi/types/budgets/tag_update_response.py,sha256=5Q16vkLUMLkyzgCWRcz7aDVA0KTCHQd_eAKnx2-VoWQ,244
51
+ payi-0.1.0a1.dist-info/METADATA,sha256=xbdw14fMkvRpo38COIfFWKbYOdN9GI5JnF8g5Sb-bVI,11872
52
+ payi-0.1.0a1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
53
+ payi-0.1.0a1.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
54
+ payi-0.1.0a1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.25.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any