mixpeek 0.20.9__py3-none-any.whl → 0.20.10__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.
mixpeek/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mixpeek"
6
- __version__: str = "0.20.9"
6
+ __version__: str = "0.20.10"
7
7
  __openapi_doc_version__: str = "0.81"
8
- __gen_version__: str = "2.536.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.20.9 2.536.0 0.81 mixpeek"
8
+ __gen_version__: str = "2.539.0"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.20.10 2.539.0 0.81 mixpeek"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
mixpeek/collections.py CHANGED
@@ -1234,3 +1234,231 @@ class Collections(BaseSDK):
1234
1234
  http_res_text,
1235
1235
  http_res,
1236
1236
  )
1237
+
1238
+ def get_collection_details_v1_collections_collection_details_get(
1239
+ self,
1240
+ *,
1241
+ collection: str,
1242
+ x_namespace: OptionalNullable[str] = UNSET,
1243
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
1244
+ server_url: Optional[str] = None,
1245
+ timeout_ms: Optional[int] = None,
1246
+ http_headers: Optional[Mapping[str, str]] = None,
1247
+ ) -> models.CollectionDetailsResponse:
1248
+ r"""Get Collection Details
1249
+
1250
+ Get a collection using either its name or ID
1251
+
1252
+ :param collection: Either the collection name or collection ID
1253
+ :param x_namespace: Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.
1254
+ :param retries: Override the default retry configuration for this method
1255
+ :param server_url: Override the default server URL for this method
1256
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
1257
+ :param http_headers: Additional headers to set or replace on requests.
1258
+ """
1259
+ base_url = None
1260
+ url_variables = None
1261
+ if timeout_ms is None:
1262
+ timeout_ms = self.sdk_configuration.timeout_ms
1263
+
1264
+ if server_url is not None:
1265
+ base_url = server_url
1266
+ else:
1267
+ base_url = self._get_url(base_url, url_variables)
1268
+
1269
+ request = models.GetCollectionDetailsV1CollectionsCollectionDetailsGetRequest(
1270
+ collection=collection,
1271
+ x_namespace=x_namespace,
1272
+ )
1273
+
1274
+ req = self._build_request(
1275
+ method="GET",
1276
+ path="/v1/collections/{collection}/details",
1277
+ base_url=base_url,
1278
+ url_variables=url_variables,
1279
+ request=request,
1280
+ request_body_required=False,
1281
+ request_has_path_params=True,
1282
+ request_has_query_params=True,
1283
+ user_agent_header="user-agent",
1284
+ accept_header_value="application/json",
1285
+ http_headers=http_headers,
1286
+ security=self.sdk_configuration.security,
1287
+ timeout_ms=timeout_ms,
1288
+ )
1289
+
1290
+ if retries == UNSET:
1291
+ if self.sdk_configuration.retry_config is not UNSET:
1292
+ retries = self.sdk_configuration.retry_config
1293
+
1294
+ retry_config = None
1295
+ if isinstance(retries, utils.RetryConfig):
1296
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
1297
+
1298
+ http_res = self.do_request(
1299
+ hook_ctx=HookContext(
1300
+ base_url=base_url or "",
1301
+ operation_id="get_collection_details_v1_collections__collection__details_get",
1302
+ oauth2_scopes=[],
1303
+ security_source=get_security_from_env(
1304
+ self.sdk_configuration.security, models.Security
1305
+ ),
1306
+ ),
1307
+ request=req,
1308
+ error_status_codes=["400", "401", "403", "404", "422", "4XX", "500", "5XX"],
1309
+ retry_config=retry_config,
1310
+ )
1311
+
1312
+ response_data: Any = None
1313
+ if utils.match_response(http_res, "200", "application/json"):
1314
+ return utils.unmarshal_json(http_res.text, models.CollectionDetailsResponse)
1315
+ if utils.match_response(
1316
+ http_res, ["400", "401", "403", "404"], "application/json"
1317
+ ):
1318
+ response_data = utils.unmarshal_json(
1319
+ http_res.text, models.ErrorResponseData
1320
+ )
1321
+ raise models.ErrorResponse(data=response_data)
1322
+ if utils.match_response(http_res, "422", "application/json"):
1323
+ response_data = utils.unmarshal_json(
1324
+ http_res.text, models.HTTPValidationErrorData
1325
+ )
1326
+ raise models.HTTPValidationError(data=response_data)
1327
+ if utils.match_response(http_res, "500", "application/json"):
1328
+ response_data = utils.unmarshal_json(
1329
+ http_res.text, models.ErrorResponseData
1330
+ )
1331
+ raise models.ErrorResponse(data=response_data)
1332
+ if utils.match_response(http_res, "4XX", "*"):
1333
+ http_res_text = utils.stream_to_text(http_res)
1334
+ raise models.APIError(
1335
+ "API error occurred", http_res.status_code, http_res_text, http_res
1336
+ )
1337
+ if utils.match_response(http_res, "5XX", "*"):
1338
+ http_res_text = utils.stream_to_text(http_res)
1339
+ raise models.APIError(
1340
+ "API error occurred", http_res.status_code, http_res_text, http_res
1341
+ )
1342
+
1343
+ content_type = http_res.headers.get("Content-Type")
1344
+ http_res_text = utils.stream_to_text(http_res)
1345
+ raise models.APIError(
1346
+ f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
1347
+ http_res.status_code,
1348
+ http_res_text,
1349
+ http_res,
1350
+ )
1351
+
1352
+ async def get_collection_details_v1_collections_collection_details_get_async(
1353
+ self,
1354
+ *,
1355
+ collection: str,
1356
+ x_namespace: OptionalNullable[str] = UNSET,
1357
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
1358
+ server_url: Optional[str] = None,
1359
+ timeout_ms: Optional[int] = None,
1360
+ http_headers: Optional[Mapping[str, str]] = None,
1361
+ ) -> models.CollectionDetailsResponse:
1362
+ r"""Get Collection Details
1363
+
1364
+ Get a collection using either its name or ID
1365
+
1366
+ :param collection: Either the collection name or collection ID
1367
+ :param x_namespace: Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.
1368
+ :param retries: Override the default retry configuration for this method
1369
+ :param server_url: Override the default server URL for this method
1370
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
1371
+ :param http_headers: Additional headers to set or replace on requests.
1372
+ """
1373
+ base_url = None
1374
+ url_variables = None
1375
+ if timeout_ms is None:
1376
+ timeout_ms = self.sdk_configuration.timeout_ms
1377
+
1378
+ if server_url is not None:
1379
+ base_url = server_url
1380
+ else:
1381
+ base_url = self._get_url(base_url, url_variables)
1382
+
1383
+ request = models.GetCollectionDetailsV1CollectionsCollectionDetailsGetRequest(
1384
+ collection=collection,
1385
+ x_namespace=x_namespace,
1386
+ )
1387
+
1388
+ req = self._build_request_async(
1389
+ method="GET",
1390
+ path="/v1/collections/{collection}/details",
1391
+ base_url=base_url,
1392
+ url_variables=url_variables,
1393
+ request=request,
1394
+ request_body_required=False,
1395
+ request_has_path_params=True,
1396
+ request_has_query_params=True,
1397
+ user_agent_header="user-agent",
1398
+ accept_header_value="application/json",
1399
+ http_headers=http_headers,
1400
+ security=self.sdk_configuration.security,
1401
+ timeout_ms=timeout_ms,
1402
+ )
1403
+
1404
+ if retries == UNSET:
1405
+ if self.sdk_configuration.retry_config is not UNSET:
1406
+ retries = self.sdk_configuration.retry_config
1407
+
1408
+ retry_config = None
1409
+ if isinstance(retries, utils.RetryConfig):
1410
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
1411
+
1412
+ http_res = await self.do_request_async(
1413
+ hook_ctx=HookContext(
1414
+ base_url=base_url or "",
1415
+ operation_id="get_collection_details_v1_collections__collection__details_get",
1416
+ oauth2_scopes=[],
1417
+ security_source=get_security_from_env(
1418
+ self.sdk_configuration.security, models.Security
1419
+ ),
1420
+ ),
1421
+ request=req,
1422
+ error_status_codes=["400", "401", "403", "404", "422", "4XX", "500", "5XX"],
1423
+ retry_config=retry_config,
1424
+ )
1425
+
1426
+ response_data: Any = None
1427
+ if utils.match_response(http_res, "200", "application/json"):
1428
+ return utils.unmarshal_json(http_res.text, models.CollectionDetailsResponse)
1429
+ if utils.match_response(
1430
+ http_res, ["400", "401", "403", "404"], "application/json"
1431
+ ):
1432
+ response_data = utils.unmarshal_json(
1433
+ http_res.text, models.ErrorResponseData
1434
+ )
1435
+ raise models.ErrorResponse(data=response_data)
1436
+ if utils.match_response(http_res, "422", "application/json"):
1437
+ response_data = utils.unmarshal_json(
1438
+ http_res.text, models.HTTPValidationErrorData
1439
+ )
1440
+ raise models.HTTPValidationError(data=response_data)
1441
+ if utils.match_response(http_res, "500", "application/json"):
1442
+ response_data = utils.unmarshal_json(
1443
+ http_res.text, models.ErrorResponseData
1444
+ )
1445
+ raise models.ErrorResponse(data=response_data)
1446
+ if utils.match_response(http_res, "4XX", "*"):
1447
+ http_res_text = await utils.stream_to_text_async(http_res)
1448
+ raise models.APIError(
1449
+ "API error occurred", http_res.status_code, http_res_text, http_res
1450
+ )
1451
+ if utils.match_response(http_res, "5XX", "*"):
1452
+ http_res_text = await utils.stream_to_text_async(http_res)
1453
+ raise models.APIError(
1454
+ "API error occurred", http_res.status_code, http_res_text, http_res
1455
+ )
1456
+
1457
+ content_type = http_res.headers.get("Content-Type")
1458
+ http_res_text = await utils.stream_to_text_async(http_res)
1459
+ raise models.APIError(
1460
+ f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
1461
+ http_res.status_code,
1462
+ http_res_text,
1463
+ http_res,
1464
+ )
@@ -169,6 +169,10 @@ from .get_asset_with_features_v1_assets_asset_id_features_getop import (
169
169
  GetAssetWithFeaturesV1AssetsAssetIDFeaturesGetRequest,
170
170
  GetAssetWithFeaturesV1AssetsAssetIDFeaturesGetRequestTypedDict,
171
171
  )
172
+ from .get_collection_details_v1_collections_collection_details_getop import (
173
+ GetCollectionDetailsV1CollectionsCollectionDetailsGetRequest,
174
+ GetCollectionDetailsV1CollectionsCollectionDetailsGetRequestTypedDict,
175
+ )
172
176
  from .get_collection_details_v1_collections_collection_getop import (
173
177
  GetCollectionDetailsV1CollectionsCollectionGetRequest,
174
178
  GetCollectionDetailsV1CollectionsCollectionGetRequestTypedDict,
@@ -597,6 +601,8 @@ __all__ = [
597
601
  "GetAssetV1AssetsAssetIDGetRequestTypedDict",
598
602
  "GetAssetWithFeaturesV1AssetsAssetIDFeaturesGetRequest",
599
603
  "GetAssetWithFeaturesV1AssetsAssetIDFeaturesGetRequestTypedDict",
604
+ "GetCollectionDetailsV1CollectionsCollectionDetailsGetRequest",
605
+ "GetCollectionDetailsV1CollectionsCollectionDetailsGetRequestTypedDict",
600
606
  "GetCollectionDetailsV1CollectionsCollectionGetRequest",
601
607
  "GetCollectionDetailsV1CollectionsCollectionGetRequestTypedDict",
602
608
  "GetFeatureV1FeaturesFeatureIDGetRequest",
@@ -0,0 +1,59 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from mixpeek.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
5
+ from mixpeek.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
6
+ import pydantic
7
+ from pydantic import model_serializer
8
+ from typing_extensions import Annotated, NotRequired, TypedDict
9
+
10
+
11
+ class GetCollectionDetailsV1CollectionsCollectionDetailsGetRequestTypedDict(TypedDict):
12
+ collection: str
13
+ r"""Either the collection name or collection ID"""
14
+ x_namespace: NotRequired[Nullable[str]]
15
+ r"""Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint."""
16
+
17
+
18
+ class GetCollectionDetailsV1CollectionsCollectionDetailsGetRequest(BaseModel):
19
+ collection: Annotated[
20
+ str, FieldMetadata(path=PathParamMetadata(style="simple", explode=False))
21
+ ]
22
+ r"""Either the collection name or collection ID"""
23
+
24
+ x_namespace: Annotated[
25
+ OptionalNullable[str],
26
+ pydantic.Field(alias="X-Namespace"),
27
+ FieldMetadata(header=HeaderMetadata(style="simple", explode=False)),
28
+ ] = UNSET
29
+ r"""Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint."""
30
+
31
+ @model_serializer(mode="wrap")
32
+ def serialize_model(self, handler):
33
+ optional_fields = ["X-Namespace"]
34
+ nullable_fields = ["X-Namespace"]
35
+ null_default_fields = []
36
+
37
+ serialized = handler(self)
38
+
39
+ m = {}
40
+
41
+ for n, f in self.model_fields.items():
42
+ k = f.alias or n
43
+ val = serialized.get(k)
44
+ serialized.pop(k, None)
45
+
46
+ optional_nullable = k in optional_fields and k in nullable_fields
47
+ is_set = (
48
+ self.__pydantic_fields_set__.intersection({n})
49
+ or k in null_default_fields
50
+ ) # pylint: disable=no-member
51
+
52
+ if val is not None and val != UNSET_SENTINEL:
53
+ m[k] = val
54
+ elif val != UNSET_SENTINEL and (
55
+ not k in optional_fields or (optional_nullable and is_set)
56
+ ):
57
+ m[k] = val
58
+
59
+ return m
@@ -65,24 +65,24 @@ class LogicalOperator(BaseModel):
65
65
 
66
66
 
67
67
  AndTypedDict = TypeAliasType(
68
- "AndTypedDict", Union[FilterConditionTypedDict, LogicalOperatorTypedDict]
68
+ "AndTypedDict", Union[FilterConditionTypedDict, "LogicalOperatorTypedDict"]
69
69
  )
70
70
 
71
71
 
72
- And = TypeAliasType("And", Union[FilterCondition, LogicalOperator])
72
+ And = TypeAliasType("And", Union[FilterCondition, "LogicalOperator"])
73
73
 
74
74
 
75
75
  OrTypedDict = TypeAliasType(
76
- "OrTypedDict", Union[FilterConditionTypedDict, LogicalOperatorTypedDict]
76
+ "OrTypedDict", Union[FilterConditionTypedDict, "LogicalOperatorTypedDict"]
77
77
  )
78
78
 
79
79
 
80
- Or = TypeAliasType("Or", Union[FilterCondition, LogicalOperator])
80
+ Or = TypeAliasType("Or", Union[FilterCondition, "LogicalOperator"])
81
81
 
82
82
 
83
83
  NorTypedDict = TypeAliasType(
84
- "NorTypedDict", Union[FilterConditionTypedDict, LogicalOperatorTypedDict]
84
+ "NorTypedDict", Union[FilterConditionTypedDict, "LogicalOperatorTypedDict"]
85
85
  )
86
86
 
87
87
 
88
- Nor = TypeAliasType("Nor", Union[FilterCondition, LogicalOperator])
88
+ Nor = TypeAliasType("Nor", Union[FilterCondition, "LogicalOperator"])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mixpeek
3
- Version: 0.20.9
3
+ Version: 0.20.10
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -218,6 +218,7 @@ with Mixpeek(
218
218
  * [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#delete) - Delete Collection
219
219
  * [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#update) - Update Collection
220
220
  * [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get) - Get Collection Details
221
+ * [get_collection_details_v1_collections_collection_details_get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#get_collection_details_v1_collections_collection_details_get) - Get Collection Details
221
222
 
222
223
  ### [feature_extractors](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/featureextractors/README.md)
223
224
 
@@ -3,16 +3,16 @@ mixpeek/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,11
3
3
  mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  mixpeek/_hooks/sdkhooks.py,sha256=T0xbVPw8mvvFszHZlrZdtFrJBovAqE-JQfw4dS9Xi7Y,2495
5
5
  mixpeek/_hooks/types.py,sha256=YEJVwBkHXS0VhTpa_xr7IZdJM5DdEi7QKq_LDv-6A2o,2810
6
- mixpeek/_version.py,sha256=mmVFeATt1Y51XjaJ9K4RM49OsbXkwGTwgsI4w9RLcrs,456
6
+ mixpeek/_version.py,sha256=3f4nkcAyBKG2wfOmnpyqawD9tOaLt0VPOAiK3u_AA7M,458
7
7
  mixpeek/assets.py,sha256=DnVKyR5-dsyyuCnzHn2s7EdRwCzg3qQidsJlqBxeCBA,79298
8
8
  mixpeek/basesdk.py,sha256=qpFsPjn-FwedQiTfOScgF2VCWHRSPkd4TFH6GSlV4ww,12168
9
- mixpeek/collections.py,sha256=Aqn_lM4GClePKEdOnn43eD3iX0DBaRdwnkPte3MqTYU,51807
9
+ mixpeek/collections.py,sha256=_CjKk-BK0wK7GBPjqLzEOw2WAUCg4eiK76zcI-OUfbo,61653
10
10
  mixpeek/featureextractors.py,sha256=_h44AFhY1QZ2vNZ1mp-IiwSjkpGcE3HFFYAmf_p8CpI,10138
11
11
  mixpeek/features.py,sha256=Uo72_WRDu5qpR4tbIsQ5Yn_sukp9aK9qTTjKd4xJUxI,61552
12
12
  mixpeek/health.py,sha256=7QjiR-IESq2mrYrx9x0sa1de3530cUDc7gUdWsc-Q6s,6976
13
13
  mixpeek/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
14
14
  mixpeek/ingestassets.py,sha256=Gj7NokeHKcs9dbthFAXMaFjiUJOiKOnfzoNSGo6Ketg,42062
15
- mixpeek/models/__init__.py,sha256=Gvyvq_f99L65JlfwafRkx_UpbaFwAK27DYEvVHSvzuc,31893
15
+ mixpeek/models/__init__.py,sha256=7pciFZIOsLEYcMnWm6R9h-z7KMmnMX7a7bvchh40qAI,32259
16
16
  mixpeek/models/actionusage.py,sha256=WAnnBVTeQ9j0dtIrubfyyJQwbBamxManfS8fc2OFNyo,324
17
17
  mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
18
18
  mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
@@ -69,6 +69,7 @@ mixpeek/models/genericsuccessresponse.py,sha256=0Ce1Rab7ED1vQrVP6nAtjFYz-_o0nV0r
69
69
  mixpeek/models/geoindexparams.py,sha256=wMb-04qAYhBZW1tCMzr8ZLRf5s43aWp_b4u_17bV5AE,443
70
70
  mixpeek/models/get_asset_v1_assets_asset_id_getop.py,sha256=2V-O6nYeHcydDPXOvYbgLzvcX3_8BThjCPW50JwtGgw,2811
71
71
  mixpeek/models/get_asset_with_features_v1_assets_asset_id_features_getop.py,sha256=LF8ebuHH0jFjsiyXjwq8vBi_Z3Cz9ospxXYSGcRX6kE,2852
72
+ mixpeek/models/get_collection_details_v1_collections_collection_details_getop.py,sha256=xL7PSqRP2RKtk2xPia_ni7Sjw-_HsWjwhGqG_Gfgx3g,2342
72
73
  mixpeek/models/get_collection_details_v1_collections_collection_getop.py,sha256=g1V3S_LUs8FUlIr0ygSN7waDlo3rT7qxgqF-hECC3pg,2328
73
74
  mixpeek/models/get_feature_v1_features_feature_id_getop.py,sha256=kD27iLRuZsBI861uGONBXFh5_sWvFuZc6LP2dyKhUAI,2628
74
75
  mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py,sha256=21luHlRdFzWL2xm0klDBPSZFLjKBw7hudQN5YzhsSA0,630
@@ -112,7 +113,7 @@ mixpeek/models/listfeaturesrequest.py,sha256=b0hUacli5s9E0W-jeboYLJrQyHMmetd7VyI
112
113
  mixpeek/models/listfeaturesresponse.py,sha256=5bGne8MktUoJnqyo2uWTg1nJQmFLNRTS8TX1HYcGvhQ,689
113
114
  mixpeek/models/listtasksresponse.py,sha256=KQ4tpekEC4aHjdEYp6Oj8SpQV0ThPZll6HApMsHSEgg,638
114
115
  mixpeek/models/listtaxonomiesresponse.py,sha256=Qd6kppjPrLR63e8vfNCGKJmw_YHilIwoBdq23XCTU90,767
115
- mixpeek/models/logicaloperator.py,sha256=-YpC_qxzBHcjS71TsoVCEI9OvePL56Fx6Q_lpUaZipg,2824
116
+ mixpeek/models/logicaloperator.py,sha256=p2J0aPVw-EJToXtmAgXNFYSuoJHHQNkcALJygCKBpiM,2836
116
117
  mixpeek/models/logodetectsettings.py,sha256=f_xvsILMrlbhS4raufxc7iNaONqEvWWTj7_OOIr4BTM,1706
117
118
  mixpeek/models/modality.py,sha256=qITDsYEVP7vf1PiekTD6F0cRGn8HZaoHhPmn-C8ksmQ,291
118
119
  mixpeek/models/modeldetails.py,sha256=eNY7vsH99lyvSmKUOJ8ieOekgoNz2M2rB26Z6RGdG70,1902
@@ -195,6 +196,6 @@ mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,600
195
196
  mixpeek/utils/serializers.py,sha256=BSJT7kBOkNBFyP7KREyMoe14JGbgijD1M6AXFMbdmco,4924
196
197
  mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
197
198
  mixpeek/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
198
- mixpeek-0.20.9.dist-info/METADATA,sha256=XvBK_q12-Px-M6wUXHUOoDtjqtGsx6e8rUWj93zJ6lc,23252
199
- mixpeek-0.20.9.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
200
- mixpeek-0.20.9.dist-info/RECORD,,
199
+ mixpeek-0.20.10.dist-info/METADATA,sha256=EU1ChMOBeeTf9Zl3FPEaQ8KMvZg9JZMBD1CUpJi4uOA,23487
200
+ mixpeek-0.20.10.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
201
+ mixpeek-0.20.10.dist-info/RECORD,,