payi 0.1.0a36__py3-none-any.whl → 0.1.0a37__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.

payi/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "payi"
4
- __version__ = "0.1.0-alpha.36" # x-release-please-version
4
+ __version__ = "0.1.0-alpha.37" # x-release-please-version
payi/lib/instrument.py CHANGED
@@ -216,13 +216,13 @@ class PayiInstrumentor:
216
216
  # should not happen
217
217
  return wrapped(*args, **kwargs)
218
218
 
219
- if context.get("proxy", True):
220
- proxy_extra_headers = kwargs.get("extra_headers", {})
221
-
222
- self._update_headers(context, proxy_extra_headers)
219
+ # after _udpate_headers, all metadata to add to ingest is in extra_headers, keyed by the xproxy-xxx header name
220
+ extra_headers = kwargs.get("extra_headers", {})
221
+ self._update_headers(context, extra_headers)
223
222
 
223
+ if context.get("proxy", True):
224
224
  if "extra_headers" not in kwargs:
225
- kwargs["extra_headers"] = proxy_extra_headers
225
+ kwargs["extra_headers"] = extra_headers
226
226
 
227
227
  return wrapped(*args, **kwargs)
228
228
 
@@ -242,16 +242,16 @@ class PayiInstrumentor:
242
242
  stream = kwargs.get("stream", False)
243
243
 
244
244
  try:
245
- limit_ids = context.get("limit_ids")
246
- request_tags = context.get("request_tags")
247
- experience_name = context.get("experience_name")
248
- experience_id = context.get("experience_id")
249
- user_id = context.get("user_id")
245
+ limit_ids = extra_headers.pop("xProxy-Limit-IDs", None)
246
+ request_tags = extra_headers.pop("xProxy-Request-Tags", None)
247
+ experience_name = extra_headers.pop("xProxy-Experience-Name", None)
248
+ experience_id = extra_headers.pop("xProxy-Experience-ID", None)
249
+ user_id = extra_headers.pop("xProxy-User-ID", None)
250
250
 
251
251
  if limit_ids:
252
- ingest["limit_ids"] = limit_ids
252
+ ingest["limit_ids"] = limit_ids.split(",")
253
253
  if request_tags:
254
- ingest["request_tags"] = request_tags
254
+ ingest["request_tags"] = request_tags.split(",")
255
255
  if experience_name:
256
256
  ingest["experience_name"] = experience_name
257
257
  if experience_id:
@@ -259,8 +259,6 @@ class PayiInstrumentor:
259
259
  if user_id:
260
260
  ingest["user_id"] = user_id
261
261
 
262
- extra_headers: dict[str, str] = kwargs.get("extra_headers") or {}
263
-
264
262
  if len(extra_headers) > 0:
265
263
  ingest["provider_request_headers"] = {k: [v] for k, v in extra_headers.items()} # type: ignore
266
264
 
@@ -321,30 +319,40 @@ class PayiInstrumentor:
321
319
  experience_id: Optional[str] = context.get("experience_id")
322
320
  user_id: Optional[str] = context.get("user_id")
323
321
 
322
+ # Merge limits from the decorator and extra headers
324
323
  if limit_ids is not None:
325
- existing_limit_ids = extra_headers.get("xProxy-Limit-IDs")
326
- limit_ids_str = ",".join(limit_ids)
327
- if existing_limit_ids is None:
328
- extra_headers["xProxy-Limit-IDs"] = limit_ids_str
324
+ existing_limit_ids = extra_headers.get("xProxy-Limit-IDs", None)
325
+
326
+ if not existing_limit_ids:
327
+ extra_headers["xProxy-Limit-IDs"] = ",".join(limit_ids)
329
328
  else:
330
- extra_headers["xProxy-Limit-IDs"] = f"{existing_limit_ids},{limit_ids_str}"
329
+ existing_ids = existing_limit_ids.split(',')
330
+ combined_ids = list(set(existing_ids + limit_ids))
331
+ extra_headers["xProxy-Limit-IDs"] = ",".join(combined_ids)
331
332
 
333
+ # Merge request from the decorator and extra headers
332
334
  if request_tags is not None:
333
- existing_request_tags = extra_headers.get("xProxy-Request-Tags")
334
- request_tags_str = ",".join(request_tags)
335
- if existing_request_tags is None:
336
- extra_headers["xProxy-Request-Tags"] = request_tags_str
337
- else:
338
- extra_headers["xProxy-Request-Tags"] = f"{existing_request_tags},{request_tags_str}"
339
-
340
- if experience_name is not None:
341
- extra_headers["xProxy-Experience-Name"] = experience_name
335
+ existing_request_tags = extra_headers.get("xProxy-Request-Tags", None)
342
336
 
343
- if experience_id is not None:
344
- extra_headers["xProxy-Experience-ID"] = experience_id
345
-
346
- if user_id is not None:
347
- extra_headers["xProxy-User-ID"] = user_id
337
+ if not existing_request_tags:
338
+ extra_headers["xProxy-Request-Tags"] = ",".join(request_tags)
339
+ else:
340
+ existing_tags = existing_request_tags.split(',')
341
+ combined_tags = list(set(existing_tags + request_tags))
342
+ extra_headers["xProxy-Request-Tags"] = ",".join(combined_tags)
343
+
344
+ # inner extra_headers user_id takes precedence over outer decorator user_id
345
+ if user_id is not None and extra_headers.get("xProxy-User-ID", None) is None:
346
+ extra_headers["xProxy-User-ID"] = user_id
347
+
348
+ # inner extra_headers experience_name and experience_id take precedence over outer decorator experience_name and experience_id
349
+ # if either inner value is specified, ignore outer decorator values
350
+ if extra_headers.get("xProxy-Experience-Name", None) is None and extra_headers.get("xProxy-Experience-ID", None) is None:
351
+ if experience_name is not None:
352
+ extra_headers["xProxy-Experience-Name"] = experience_name
353
+
354
+ if experience_id is not None:
355
+ extra_headers["xProxy-Experience-ID"] = experience_id
348
356
 
349
357
  @staticmethod
350
358
  def payi_wrapper(func: Any) -> Any:
payi/resources/ingest.py CHANGED
@@ -26,6 +26,7 @@ from .._base_client import make_request_options
26
26
  from ..types.ingest_response import IngestResponse
27
27
  from ..types.ingest_event_param import IngestEventParam
28
28
  from ..types.bulk_ingest_response import BulkIngestResponse
29
+ from ..types.pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
29
30
 
30
31
  __all__ = ["IngestResource", "AsyncIngestResource"]
31
32
 
@@ -96,10 +97,9 @@ class IngestResource(SyncAPIResource):
96
97
  experience_properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
97
98
  http_status_code: Optional[int] | NotGiven = NOT_GIVEN,
98
99
  properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
99
- provider_request_headers: Optional[Iterable[ingest_units_params.ProviderRequestHeader]] | NotGiven = NOT_GIVEN,
100
+ provider_request_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
100
101
  provider_request_json: Optional[str] | NotGiven = NOT_GIVEN,
101
- provider_response_headers: Optional[Iterable[ingest_units_params.ProviderResponseHeader]]
102
- | NotGiven = NOT_GIVEN,
102
+ provider_response_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
103
103
  provider_response_json: Union[str, List[str], None] | NotGiven = NOT_GIVEN,
104
104
  provider_uri: Optional[str] | NotGiven = NOT_GIVEN,
105
105
  time_to_first_token_ms: Optional[int] | NotGiven = NOT_GIVEN,
@@ -282,10 +282,9 @@ class AsyncIngestResource(AsyncAPIResource):
282
282
  experience_properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
283
283
  http_status_code: Optional[int] | NotGiven = NOT_GIVEN,
284
284
  properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
285
- provider_request_headers: Optional[Iterable[ingest_units_params.ProviderRequestHeader]] | NotGiven = NOT_GIVEN,
285
+ provider_request_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
286
286
  provider_request_json: Optional[str] | NotGiven = NOT_GIVEN,
287
- provider_response_headers: Optional[Iterable[ingest_units_params.ProviderResponseHeader]]
288
- | NotGiven = NOT_GIVEN,
287
+ provider_response_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
289
288
  provider_response_json: Union[str, List[str], None] | NotGiven = NOT_GIVEN,
290
289
  provider_uri: Optional[str] | NotGiven = NOT_GIVEN,
291
290
  time_to_first_token_ms: Optional[int] | NotGiven = NOT_GIVEN,
payi/types/__init__.py CHANGED
@@ -35,3 +35,6 @@ from .price_modifier_update_params import PriceModifierUpdateParams as PriceModi
35
35
  from .category_list_resources_response import CategoryListResourcesResponse as CategoryListResourcesResponse
36
36
  from .price_modifier_retrieve_response import PriceModifierRetrieveResponse as PriceModifierRetrieveResponse
37
37
  from .category_delete_resource_response import CategoryDeleteResourceResponse as CategoryDeleteResourceResponse
38
+ from .pay_i_common_models_api_router_header_info_param import (
39
+ PayICommonModelsAPIRouterHeaderInfoParam as PayICommonModelsAPIRouterHeaderInfoParam,
40
+ )
@@ -7,8 +7,9 @@ from datetime import datetime
7
7
  from typing_extensions import Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
10
11
 
11
- __all__ = ["IngestEventParam", "Units", "ProviderRequestHeader", "ProviderResponseHeader"]
12
+ __all__ = ["IngestEventParam", "Units"]
12
13
 
13
14
 
14
15
  class Units(TypedDict, total=False):
@@ -17,18 +18,6 @@ class Units(TypedDict, total=False):
17
18
  output: int
18
19
 
19
20
 
20
- class ProviderRequestHeader(TypedDict, total=False):
21
- name: Required[str]
22
-
23
- value: Optional[str]
24
-
25
-
26
- class ProviderResponseHeader(TypedDict, total=False):
27
- name: Required[str]
28
-
29
- value: Optional[str]
30
-
31
-
32
21
  class IngestEventParam(TypedDict, total=False):
33
22
  category: Required[str]
34
23
 
@@ -54,11 +43,11 @@ class IngestEventParam(TypedDict, total=False):
54
43
 
55
44
  properties: Optional[Dict[str, str]]
56
45
 
57
- provider_request_headers: Optional[Iterable[ProviderRequestHeader]]
46
+ provider_request_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]]
58
47
 
59
48
  provider_request_json: Optional[str]
60
49
 
61
- provider_response_headers: Optional[Iterable[ProviderResponseHeader]]
50
+ provider_response_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]]
62
51
 
63
52
  provider_response_json: Union[str, List[str], None]
64
53
 
@@ -7,8 +7,9 @@ from datetime import datetime
7
7
  from typing_extensions import Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
10
11
 
11
- __all__ = ["IngestUnitsParams", "Units", "ProviderRequestHeader", "ProviderResponseHeader"]
12
+ __all__ = ["IngestUnitsParams", "Units"]
12
13
 
13
14
 
14
15
  class IngestUnitsParams(TypedDict, total=False):
@@ -28,11 +29,11 @@ class IngestUnitsParams(TypedDict, total=False):
28
29
 
29
30
  properties: Optional[Dict[str, str]]
30
31
 
31
- provider_request_headers: Optional[Iterable[ProviderRequestHeader]]
32
+ provider_request_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]]
32
33
 
33
34
  provider_request_json: Optional[str]
34
35
 
35
- provider_response_headers: Optional[Iterable[ProviderResponseHeader]]
36
+ provider_response_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]]
36
37
 
37
38
  provider_response_json: Union[str, List[str], None]
38
39
 
@@ -55,15 +56,3 @@ class Units(TypedDict, total=False):
55
56
  input: int
56
57
 
57
58
  output: int
58
-
59
-
60
- class ProviderRequestHeader(TypedDict, total=False):
61
- name: Required[str]
62
-
63
- value: Optional[str]
64
-
65
-
66
- class ProviderResponseHeader(TypedDict, total=False):
67
- name: Required[str]
68
-
69
- value: Optional[str]
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Optional
6
+ from typing_extensions import Required, TypedDict
7
+
8
+ __all__ = ["PayICommonModelsAPIRouterHeaderInfoParam"]
9
+
10
+
11
+ class PayICommonModelsAPIRouterHeaderInfoParam(TypedDict, total=False):
12
+ name: Required[str]
13
+
14
+ value: Optional[str]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: payi
3
- Version: 0.1.0a36
3
+ Version: 0.1.0a37
4
4
  Summary: The official Python library for the payi API
5
5
  Project-URL: Homepage, https://github.com/Pay-i/pay-i-python
6
6
  Project-URL: Repository, https://github.com/Pay-i/pay-i-python
@@ -11,7 +11,7 @@ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
11
11
  payi/_response.py,sha256=CfrNS_3wbL8o9dRyRVfZQ5E1GUlA4CUIUEK8olmfGqE,28777
12
12
  payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
13
13
  payi/_types.py,sha256=2mbMK86K3W1aMTW7sOGQ-VND6-A2IuXKm8p4sYFztBU,6141
14
- payi/_version.py,sha256=WXEUS3siq-XLGD6ggHrJ2yahxSKu9QmeQ9tSwTyAGos,165
14
+ payi/_version.py,sha256=A67yjD8NLx9gXE9bL3Mfhrk1I_WHFEwI9UTylp6UwFw,165
15
15
  payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  payi/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
17
  payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
@@ -28,10 +28,10 @@ payi/lib/Instruments.py,sha256=cyL2jxjpRluP9rN8Vn1nmVXq2NNLdZuFIsHMQWWqat4,115
28
28
  payi/lib/OpenAIInstrumentor.py,sha256=eABTqxFLP109fOto33rBbXLh0FdQPh0a9VoMG4d6zGo,2575
29
29
  payi/lib/Stopwatch.py,sha256=vFyGVRvkppamP7W0IuZyypKLMIaqjhB7fcRG0dNyfnQ,757
30
30
  payi/lib/helpers.py,sha256=ZgkY8UE2YRc7ok2Pmxg_T9UMqKI8D8542JY3CP8RZCM,1597
31
- payi/lib/instrument.py,sha256=Mm1_RzVw0qZKeYrVzYo_3gj6MLITDv-IQl51OFDob3g,18645
31
+ payi/lib/instrument.py,sha256=Ds49BFxqWnUMezL1tRr1IPBbb8rejDrjyi6t4YO9rCU,19549
32
32
  payi/resources/__init__.py,sha256=isHGXSl9kOrZDduKrX3UenTwrdTpuKJVBjw6NYSBV20,3592
33
33
  payi/resources/billing_models.py,sha256=5w3RfGXtGlyq5vbTw6hQrx1UlzRBtlq8ArcFlf5e3TY,20152
34
- payi/resources/ingest.py,sha256=F2R-m2dE0wGMHYJwUhD3HvRBqnZK82ZeDf6nPmqWKTU,18479
34
+ payi/resources/ingest.py,sha256=JPtO7foPsftAgG92kSgU29_yOJSYuvIQtQB8WpRZuoQ,18567
35
35
  payi/resources/price_modifiers.py,sha256=t-k2F_zf2FhoxiqDHAPBPvhSgTjewlJqh50y58FNMuw,13475
36
36
  payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
37
37
  payi/resources/categories/categories.py,sha256=FohmajDcadMXzhG3Z1HKGkbSImO7rhzQ0olZXHz8z48,16074
@@ -46,7 +46,7 @@ payi/resources/limits/tags.py,sha256=s_3sIUOLZ-z67ZKRGzcFia6kBxI6POXTneP8hzNZ78o
46
46
  payi/resources/requests/__init__.py,sha256=sWDD18RLuwPB2yzxA29HiwhFdmjZAxzy1qK_4abAZ9E,1080
47
47
  payi/resources/requests/properties.py,sha256=ZsUeTMKQB4PNXn-jeoRwG-fqwpXzkRQyrFB8GmaNiQg,6466
48
48
  payi/resources/requests/requests.py,sha256=c-kt-qnrD17FvSrxBGoSBFbQDBEYDuJrf23-rPGzN1k,3763
49
- payi/types/__init__.py,sha256=8qVzwUIYOJjsf9Ugl7no3vWuDYTOZx7qL7XU7TwuSkM,2640
49
+ payi/types/__init__.py,sha256=YPxEXBR-SY7g78u8cKi5cohvuRUlMmUfsY3hS-baOvo,2796
50
50
  payi/types/billing_model.py,sha256=zwpKldc0WvS3iGKtDb9KvfxCd3lkv8F4TwFy3ciGMXg,639
51
51
  payi/types/billing_model_create_params.py,sha256=iVvmCcw0VxXGI_0YolknD3gmDH2lXVydU1dg2IY4dC4,547
52
52
  payi/types/billing_model_list_response.py,sha256=hOFjJPQAKiWEArZeZwd8e1lDi5e41zbN6NvV_1rzJeM,290
@@ -63,9 +63,9 @@ payi/types/cost_details.py,sha256=w9p79opEG3kcsjkRRP7niaMcUswdfB4Y7HCkVTcQ1zQ,30
63
63
  payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
64
64
  payi/types/experience_instance_response.py,sha256=YVWjFpCMAFXsXbU5tgMKrvXHC2F5MsTWdltzRiCUIQA,309
65
65
  payi/types/ingest_bulk_params.py,sha256=d76YwiXaNeltLS3w86ZxLzTKGa7ymGLJDSelaMQGf8Y,382
66
- payi/types/ingest_event_param.py,sha256=0bmn4SJuEFyPDomjCJg4rqvW3Q1j_3GWQUV2ppjnSuc,1620
66
+ payi/types/ingest_event_param.py,sha256=wA9YuiQceNL3veHO_rVuKZg9o-EB1WLoz0aaF6Wcm-k,1498
67
67
  payi/types/ingest_response.py,sha256=14VWaX91XuVZth1JBHY1djw8nF-0o6EK4N_WPq_p-Wc,1193
68
- payi/types/ingest_units_params.py,sha256=icx1GeG8wNfQlH5OdbrHQ15yocTGQD6s0JwkMXcrLQU,1871
68
+ payi/types/ingest_units_params.py,sha256=0s_j6268ZmeXDw9lQ_HKLldA_EvNyPcOxM6kFxLwxkA,1749
69
69
  payi/types/limit_create_params.py,sha256=SbNoXHwy24kTTOxDhtcewtKxEkmXtTLYh4CTGysojys,578
70
70
  payi/types/limit_history_response.py,sha256=sCx2qKBiHU9X2KrYWV8NZiarYMGurof5GF4QobR2-EU,787
71
71
  payi/types/limit_list_params.py,sha256=iWM67oL53y2IZ7D3Gyy8mdYv-B7vF-rbmRFn7SBUnJk,364
@@ -73,6 +73,7 @@ payi/types/limit_reset_params.py,sha256=vgqImSM89pRYY0Z2RNrJuQ6WeDX72ZPg3GWpL9EV
73
73
  payi/types/limit_response.py,sha256=wYNsbsm5oMtF7W1sTbxlZ5VE0XaS_UbP6y7ZXGKfwqk,752
74
74
  payi/types/limit_update_params.py,sha256=crY4w75FWcEXbzysq1rPfD37qR5PTy_dwVRY4C_-T1w,331
75
75
  payi/types/paged_limit_list.py,sha256=tUMj5FsxXHGfBubxxltwahwiTl4TaCiVHpv4zmrTb4Q,1314
76
+ payi/types/pay_i_common_models_api_router_header_info_param.py,sha256=91djoPLmoaMWTQOXv9-Ox24dWIrM2hudrRQTCqZpX4c,381
76
77
  payi/types/price_modifier.py,sha256=Sw_5tzCGnpjQzR5aZ70_ATpfBRQA_0ue2NRM3yMcvj0,531
77
78
  payi/types/price_modifier_create_params.py,sha256=RpcYr2JYFu-pxzY4Dx1ESMp9-FBHfKt03Iw-3tlZvXQ,404
78
79
  payi/types/price_modifier_retrieve_response.py,sha256=oFXWr38-O7KHItQlSsr7K8-Arpjq0yKexSUnbWqu62Q,303
@@ -104,7 +105,7 @@ payi/types/requests/__init__.py,sha256=K4qfrWMIIg1-UNB0Vu5UdGEmf6TWoF-i3gPc_LT78
104
105
  payi/types/requests/property_create_params.py,sha256=6v1L_4pj5N5k386cbtjSAWr2QJw---WUJ5lyshRnMwc,328
105
106
  payi/types/shared/__init__.py,sha256=zgBdtU5-a1ee8l5ABWyzuELwWRTKOCCcOx7gbCgdE4A,161
106
107
  payi/types/shared/evaluation_response.py,sha256=ejEToMA57PUu1SldEtJ5z9r4fAO3U0tvdjbsyIoVX1s,214
107
- payi-0.1.0a36.dist-info/METADATA,sha256=nKLBtCqXxjNSWv1jgbXfj9AWaCWGXe3y8HslbJnzdMc,12594
108
- payi-0.1.0a36.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
109
- payi-0.1.0a36.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
110
- payi-0.1.0a36.dist-info/RECORD,,
108
+ payi-0.1.0a37.dist-info/METADATA,sha256=2rDEUus361E_chlt4fOLNwxdCYj4f3-U5jsr2R4wXvI,12594
109
+ payi-0.1.0a37.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
110
+ payi-0.1.0a37.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
111
+ payi-0.1.0a37.dist-info/RECORD,,