lambdadb 0.3.5__py3-none-any.whl → 0.3.6__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 lambdadb might be problematic. Click here for more details.
- lambdadb/_version.py +3 -3
- lambdadb/basesdk.py +4 -4
- lambdadb/collections.py +234 -350
- lambdadb/docs.py +239 -367
- lambdadb/errors/__init__.py +9 -0
- lambdadb/errors/apierror.py +30 -14
- lambdadb/errors/badrequest_error.py +12 -6
- lambdadb/errors/internalservererror.py +12 -6
- lambdadb/errors/lambdadberror.py +26 -0
- lambdadb/errors/no_response_error.py +13 -0
- lambdadb/errors/resourcealreadyexists_error.py +12 -6
- lambdadb/errors/resourcenotfound_error.py +12 -6
- lambdadb/errors/responsevalidationerror.py +25 -0
- lambdadb/errors/toomanyrequests_error.py +12 -6
- lambdadb/errors/unauthenticated_error.py +12 -6
- lambdadb/models/__init__.py +0 -42
- lambdadb/models/deletedocsop.py +3 -11
- lambdadb/models/fetchdocsop.py +3 -11
- lambdadb/models/querycollectionop.py +7 -31
- lambdadb/models/updatedocsop.py +3 -11
- lambdadb/models/upsertdocsop.py +3 -11
- lambdadb/utils/__init__.py +3 -0
- lambdadb/utils/serializers.py +21 -3
- {lambdadb-0.3.5.dist-info → lambdadb-0.3.6.dist-info}/METADATA +49 -36
- {lambdadb-0.3.5.dist-info → lambdadb-0.3.6.dist-info}/RECORD +27 -24
- {lambdadb-0.3.5.dist-info → lambdadb-0.3.6.dist-info}/LICENSE +0 -0
- {lambdadb-0.3.5.dist-info → lambdadb-0.3.6.dist-info}/WHEEL +0 -0
lambdadb/models/updatedocsop.py
CHANGED
|
@@ -4,25 +4,17 @@ from __future__ import annotations
|
|
|
4
4
|
from lambdadb.types import BaseModel
|
|
5
5
|
from lambdadb.utils import FieldMetadata, PathParamMetadata, RequestMetadata
|
|
6
6
|
import pydantic
|
|
7
|
-
from typing import List
|
|
7
|
+
from typing import Any, Dict, List
|
|
8
8
|
from typing_extensions import Annotated, TypedDict
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class UpdateDocsDocTypedDict(TypedDict):
|
|
12
|
-
pass
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class UpdateDocsDoc(BaseModel):
|
|
16
|
-
pass
|
|
17
|
-
|
|
18
|
-
|
|
19
11
|
class UpdateDocsRequestBodyTypedDict(TypedDict):
|
|
20
|
-
docs: List[
|
|
12
|
+
docs: List[Dict[str, Any]]
|
|
21
13
|
r"""A list of documents to update. Each document must contain 'id' field to be updated."""
|
|
22
14
|
|
|
23
15
|
|
|
24
16
|
class UpdateDocsRequestBody(BaseModel):
|
|
25
|
-
docs: List[
|
|
17
|
+
docs: List[Dict[str, Any]]
|
|
26
18
|
r"""A list of documents to update. Each document must contain 'id' field to be updated."""
|
|
27
19
|
|
|
28
20
|
|
lambdadb/models/upsertdocsop.py
CHANGED
|
@@ -4,25 +4,17 @@ from __future__ import annotations
|
|
|
4
4
|
from lambdadb.types import BaseModel
|
|
5
5
|
from lambdadb.utils import FieldMetadata, PathParamMetadata, RequestMetadata
|
|
6
6
|
import pydantic
|
|
7
|
-
from typing import List
|
|
7
|
+
from typing import Any, Dict, List
|
|
8
8
|
from typing_extensions import Annotated, TypedDict
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class UpsertDocsDocTypedDict(TypedDict):
|
|
12
|
-
pass
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class UpsertDocsDoc(BaseModel):
|
|
16
|
-
pass
|
|
17
|
-
|
|
18
|
-
|
|
19
11
|
class UpsertDocsRequestBodyTypedDict(TypedDict):
|
|
20
|
-
docs: List[
|
|
12
|
+
docs: List[Dict[str, Any]]
|
|
21
13
|
r"""A list of documents to upsert."""
|
|
22
14
|
|
|
23
15
|
|
|
24
16
|
class UpsertDocsRequestBody(BaseModel):
|
|
25
|
-
docs: List[
|
|
17
|
+
docs: List[Dict[str, Any]]
|
|
26
18
|
r"""A list of documents to upsert."""
|
|
27
19
|
|
|
28
20
|
|
lambdadb/utils/__init__.py
CHANGED
|
@@ -29,6 +29,7 @@ if TYPE_CHECKING:
|
|
|
29
29
|
marshal_json,
|
|
30
30
|
unmarshal,
|
|
31
31
|
unmarshal_json,
|
|
32
|
+
unmarshal_json_response,
|
|
32
33
|
serialize_decimal,
|
|
33
34
|
serialize_float,
|
|
34
35
|
serialize_int,
|
|
@@ -98,6 +99,7 @@ __all__ = [
|
|
|
98
99
|
"template_url",
|
|
99
100
|
"unmarshal",
|
|
100
101
|
"unmarshal_json",
|
|
102
|
+
"unmarshal_json_response",
|
|
101
103
|
"validate_decimal",
|
|
102
104
|
"validate_const",
|
|
103
105
|
"validate_float",
|
|
@@ -152,6 +154,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
152
154
|
"template_url": ".url",
|
|
153
155
|
"unmarshal": ".serializers",
|
|
154
156
|
"unmarshal_json": ".serializers",
|
|
157
|
+
"unmarshal_json_response": ".serializers",
|
|
155
158
|
"validate_decimal": ".serializers",
|
|
156
159
|
"validate_const": ".serializers",
|
|
157
160
|
"validate_float": ".serializers",
|
lambdadb/utils/serializers.py
CHANGED
|
@@ -4,7 +4,7 @@ from decimal import Decimal
|
|
|
4
4
|
import functools
|
|
5
5
|
import json
|
|
6
6
|
import typing
|
|
7
|
-
from typing import Any, Dict, List, Tuple, Union, get_args
|
|
7
|
+
from typing import Any, Dict, List, Optional, Tuple, Union, get_args
|
|
8
8
|
import typing_extensions
|
|
9
9
|
from typing_extensions import get_origin
|
|
10
10
|
|
|
@@ -13,6 +13,7 @@ from pydantic import ConfigDict, create_model
|
|
|
13
13
|
from pydantic_core import from_json
|
|
14
14
|
|
|
15
15
|
from ..types.basemodel import BaseModel, Nullable, OptionalNullable, Unset
|
|
16
|
+
from lambdadb import errors
|
|
16
17
|
|
|
17
18
|
|
|
18
19
|
def serialize_decimal(as_str: bool):
|
|
@@ -140,6 +141,22 @@ def unmarshal_json(raw, typ: Any) -> Any:
|
|
|
140
141
|
return unmarshal(from_json(raw), typ)
|
|
141
142
|
|
|
142
143
|
|
|
144
|
+
def unmarshal_json_response(
|
|
145
|
+
typ: Any, http_res: httpx.Response, body: Optional[str] = None
|
|
146
|
+
) -> Any:
|
|
147
|
+
if body is None:
|
|
148
|
+
body = http_res.text
|
|
149
|
+
try:
|
|
150
|
+
return unmarshal_json(body, typ)
|
|
151
|
+
except Exception as e:
|
|
152
|
+
raise errors.ResponseValidationError(
|
|
153
|
+
"Response validation failed",
|
|
154
|
+
http_res,
|
|
155
|
+
e,
|
|
156
|
+
body,
|
|
157
|
+
) from e
|
|
158
|
+
|
|
159
|
+
|
|
143
160
|
def unmarshal(val, typ: Any) -> Any:
|
|
144
161
|
unmarshaller = create_model(
|
|
145
162
|
"Unmarshaller",
|
|
@@ -192,7 +209,9 @@ def is_union(obj: object) -> bool:
|
|
|
192
209
|
"""
|
|
193
210
|
Returns True if the given object is a typing.Union or typing_extensions.Union.
|
|
194
211
|
"""
|
|
195
|
-
return any(
|
|
212
|
+
return any(
|
|
213
|
+
obj is typing_obj for typing_obj in _get_typing_objects_by_name_of("Union")
|
|
214
|
+
)
|
|
196
215
|
|
|
197
216
|
|
|
198
217
|
def stream_to_text(stream: httpx.Response) -> str:
|
|
@@ -245,4 +264,3 @@ def _get_typing_objects_by_name_of(name: str) -> Tuple[Any, ...]:
|
|
|
245
264
|
f"Neither typing nor typing_extensions has an object called {name!r}"
|
|
246
265
|
)
|
|
247
266
|
return result
|
|
248
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: lambdadb
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -265,29 +265,18 @@ with LambdaDB(
|
|
|
265
265
|
<!-- Start Error Handling [errors] -->
|
|
266
266
|
## Error Handling
|
|
267
267
|
|
|
268
|
-
|
|
268
|
+
[`LambdaDBError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/lambdadberror.py) is the base class for all HTTP error responses. It has the following properties:
|
|
269
269
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
|
273
|
-
|
|
274
|
-
|
|
|
275
|
-
|
|
|
276
|
-
|
|
|
277
|
-
|
|
|
278
|
-
|
|
279
|
-
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `list_async` method may raise the following exceptions:
|
|
280
|
-
|
|
281
|
-
| Error Type | Status Code | Content Type |
|
|
282
|
-
| ---------------------------- | ----------- | ---------------- |
|
|
283
|
-
| errors.UnauthenticatedError | 401 | application/json |
|
|
284
|
-
| errors.ResourceNotFoundError | 404 | application/json |
|
|
285
|
-
| errors.TooManyRequestsError | 429 | application/json |
|
|
286
|
-
| errors.InternalServerError | 500 | application/json |
|
|
287
|
-
| errors.APIError | 4XX, 5XX | \*/\* |
|
|
270
|
+
| Property | Type | Description |
|
|
271
|
+
| ------------------ | ---------------- | --------------------------------------------------------------------------------------- |
|
|
272
|
+
| `err.message` | `str` | Error message |
|
|
273
|
+
| `err.status_code` | `int` | HTTP response status code eg `404` |
|
|
274
|
+
| `err.headers` | `httpx.Headers` | HTTP response headers |
|
|
275
|
+
| `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
|
|
276
|
+
| `err.raw_response` | `httpx.Response` | Raw HTTP response |
|
|
277
|
+
| `err.data` | | Optional. Some errors may contain structured data. [See Error Classes](https://github.com/lambdadb/lambdadb-python-client/blob/master/#error-classes). |
|
|
288
278
|
|
|
289
279
|
### Example
|
|
290
|
-
|
|
291
280
|
```python
|
|
292
281
|
from lambdadb import LambdaDB, errors
|
|
293
282
|
|
|
@@ -303,22 +292,46 @@ with LambdaDB(
|
|
|
303
292
|
# Handle response
|
|
304
293
|
print(res)
|
|
305
294
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
except errors.APIError as e:
|
|
319
|
-
# handle exception
|
|
320
|
-
raise(e)
|
|
295
|
+
|
|
296
|
+
except errors.LambdaDBError as e:
|
|
297
|
+
# The base class for HTTP error responses
|
|
298
|
+
print(e.message)
|
|
299
|
+
print(e.status_code)
|
|
300
|
+
print(e.body)
|
|
301
|
+
print(e.headers)
|
|
302
|
+
print(e.raw_response)
|
|
303
|
+
|
|
304
|
+
# Depending on the method different errors may be thrown
|
|
305
|
+
if isinstance(e, errors.UnauthenticatedError):
|
|
306
|
+
print(e.data.message) # Optional[str]
|
|
321
307
|
```
|
|
308
|
+
|
|
309
|
+
### Error Classes
|
|
310
|
+
**Primary errors:**
|
|
311
|
+
* [`LambdaDBError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/lambdadberror.py): The base class for HTTP error responses.
|
|
312
|
+
* [`UnauthenticatedError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/unauthenticatederror.py): Unauthenticated. Status code `401`.
|
|
313
|
+
* [`TooManyRequestsError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/toomanyrequestserror.py): Too many requests. Status code `429`.
|
|
314
|
+
* [`InternalServerError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/internalservererror.py): Internal server error. Status code `500`.
|
|
315
|
+
* [`ResourceNotFoundError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/resourcenotfounderror.py): Resource not found. Status code `404`. *
|
|
316
|
+
|
|
317
|
+
<details><summary>Less common errors (7)</summary>
|
|
318
|
+
|
|
319
|
+
<br />
|
|
320
|
+
|
|
321
|
+
**Network errors:**
|
|
322
|
+
* [`httpx.RequestError`](https://www.python-httpx.org/exceptions/#httpx.RequestError): Base class for request errors.
|
|
323
|
+
* [`httpx.ConnectError`](https://www.python-httpx.org/exceptions/#httpx.ConnectError): HTTP client was unable to make a request to a server.
|
|
324
|
+
* [`httpx.TimeoutException`](https://www.python-httpx.org/exceptions/#httpx.TimeoutException): HTTP request timed out.
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
**Inherit from [`LambdaDBError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/lambdadberror.py)**:
|
|
328
|
+
* [`BadRequestError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/badrequesterror.py): Bad request. Status code `400`. Applicable to 8 of 12 methods.*
|
|
329
|
+
* [`ResourceAlreadyExistsError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/resourcealreadyexistserror.py): Resource already exists. Status code `409`. Applicable to 1 of 12 methods.*
|
|
330
|
+
* [`ResponseValidationError`](https://github.com/lambdadb/lambdadb-python-client/blob/master/./src/lambdadb/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
331
|
+
|
|
332
|
+
</details>
|
|
333
|
+
|
|
334
|
+
\* Check [the method documentation](https://github.com/lambdadb/lambdadb-python-client/blob/master/#available-resources-and-operations) to see if the error is applicable.
|
|
322
335
|
<!-- End Error Handling [errors] -->
|
|
323
336
|
|
|
324
337
|
<!-- Start Server Selection [server] -->
|
|
@@ -3,43 +3,46 @@ lambdadb/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,1
|
|
|
3
3
|
lambdadb/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
lambdadb/_hooks/sdkhooks.py,sha256=KGhPvIuUjurDBQOT6t-aWgiu1YDRXpn-OMz6_PkUdFk,2463
|
|
5
5
|
lambdadb/_hooks/types.py,sha256=09dUW5q4HN9aVFAhskDLQqjxLPBfDD97uuucmdcBa6Q,2987
|
|
6
|
-
lambdadb/_version.py,sha256=
|
|
7
|
-
lambdadb/basesdk.py,sha256=
|
|
8
|
-
lambdadb/collections.py,sha256=
|
|
9
|
-
lambdadb/docs.py,sha256=
|
|
10
|
-
lambdadb/errors/__init__.py,sha256=
|
|
11
|
-
lambdadb/errors/apierror.py,sha256=
|
|
12
|
-
lambdadb/errors/badrequest_error.py,sha256=
|
|
13
|
-
lambdadb/errors/internalservererror.py,sha256=
|
|
14
|
-
lambdadb/errors/
|
|
15
|
-
lambdadb/errors/
|
|
16
|
-
lambdadb/errors/
|
|
17
|
-
lambdadb/errors/
|
|
6
|
+
lambdadb/_version.py,sha256=hEqkhi_r43UUrFatU2fOhQMkFz0vavozAHPDcH_8dlI,458
|
|
7
|
+
lambdadb/basesdk.py,sha256=wu3Ri2Po6LxhBngXYkD4-Grlxa0DX9I18cPH2vme-uI,11887
|
|
8
|
+
lambdadb/collections.py,sha256=bc30Eq_PAJ9uuigEoXhcdUBlnSmmxRAeBNpqZSWBEpA,64975
|
|
9
|
+
lambdadb/docs.py,sha256=ACGOOteLtbXbR1hW5HzbhTs487P6prshFBwvx42y4P8,64677
|
|
10
|
+
lambdadb/errors/__init__.py,sha256=9_lvXJNi04FsujmLRi4BbOUtWA0L2ob2BJRBnXT5Kpg,3016
|
|
11
|
+
lambdadb/errors/apierror.py,sha256=OBYy3l8_qBC4OXKwl_OwY5ko4klJvjd0j9bqy1C_VZo,1224
|
|
12
|
+
lambdadb/errors/badrequest_error.py,sha256=0n_4BpubMGSKYHyJuvZnXGYRbDKs9G0QN6sm6xZLDeI,693
|
|
13
|
+
lambdadb/errors/internalservererror.py,sha256=OKDYpPakOeRV8ADPvLTbX_3G892dt60l4VHWb3S506c,709
|
|
14
|
+
lambdadb/errors/lambdadberror.py,sha256=dqU0ytEest7WABRR1JeYEA-dekHn7SiWisH1PZg065Y,715
|
|
15
|
+
lambdadb/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
|
|
16
|
+
lambdadb/errors/resourcealreadyexists_error.py,sha256=ioNmtUZCronzxmkesMH6Ht5QsP3irVYq1L6H7iNMPcQ,737
|
|
17
|
+
lambdadb/errors/resourcenotfound_error.py,sha256=k7v-OzJm95p11rzFYnzpkkCq2i_lx9pT9bjovU9Z2Dg,717
|
|
18
|
+
lambdadb/errors/responsevalidationerror.py,sha256=o_l_D3Z_Npl_BDprawTNU3df7xdoREAWx2GjVGP0eOA,691
|
|
19
|
+
lambdadb/errors/toomanyrequests_error.py,sha256=yLIb-NT2tf7qJglHxleMUDNGnGSP2-_3CGzqiXIHtLE,713
|
|
20
|
+
lambdadb/errors/unauthenticated_error.py,sha256=Ha7K1fbnx53nTxy8hRr1BW1qOEbtsJa3RjJWR9rPhsM,713
|
|
18
21
|
lambdadb/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
19
|
-
lambdadb/models/__init__.py,sha256=
|
|
22
|
+
lambdadb/models/__init__.py,sha256=2omt5SgoTlRQyQEB85qp4w0BBTPJaNQP_gA0PdsnBV8,10853
|
|
20
23
|
lambdadb/models/bulkupsertdocsop.py,sha256=wjADqZrC71TNmyGUWhuQ5ZVibZc4dL9SACLdWHumToo,1390
|
|
21
24
|
lambdadb/models/collectionresponse.py,sha256=ZIF-GLeOV8RS-7MBSXGQuOjzOqeqCoTV_a5cndfnpug,1943
|
|
22
25
|
lambdadb/models/createcollectionop.py,sha256=KoQlGTr3eYr8GINmlslL8DDf5dCY97hliVuevtD_Fr8,2518
|
|
23
26
|
lambdadb/models/deletecollectionop.py,sha256=fy4Y0dGAB8AJbGxryKnE6xOCj_QTi9R4SzkcYwY74WY,871
|
|
24
|
-
lambdadb/models/deletedocsop.py,sha256=
|
|
25
|
-
lambdadb/models/fetchdocsop.py,sha256=
|
|
27
|
+
lambdadb/models/deletedocsop.py,sha256=IjCVQO6IH3w_RyVe24vpuwZ2fTfKVEUxrQfNkyTtL1o,1540
|
|
28
|
+
lambdadb/models/fetchdocsop.py,sha256=I73mh1eDC_1hOaDYuxP88HgHjMJqG3qdHjjCMsKotLA,3034
|
|
26
29
|
lambdadb/models/getbulkupsertdocsop.py,sha256=S67W9IBoGXP8EVEGc6PfKkJgmOydzBhkzu6f6g2eGOU,2526
|
|
27
30
|
lambdadb/models/getcollectionop.py,sha256=Ef5uUwNHfnzU8Ij_E_8j1s4qYDy36C7mXiQZ8LY8VME,1199
|
|
28
31
|
lambdadb/models/indexconfigs_union.py,sha256=LW0afqNPHxSd7PVyhi9bWALLkofPpewIzWCH5hlghkI,2055
|
|
29
32
|
lambdadb/models/listcollectionsop.py,sha256=pfBvxfnsFwgsxPUg0Dkl1WeMOcsjvdOTcfx1iPUktEM,1028
|
|
30
33
|
lambdadb/models/messageresponse.py,sha256=0QI5LuyZVLh0Z6Jytwlo2ebAZ6x1bw5TVe7zvzQCEnM,300
|
|
31
|
-
lambdadb/models/querycollectionop.py,sha256=
|
|
34
|
+
lambdadb/models/querycollectionop.py,sha256=UBhzSLT5PNJYCAmkITbh-II0nLZJkR1NzEWhv_JtgVE,3984
|
|
32
35
|
lambdadb/models/security.py,sha256=nP-VTWFY6O-UPNPsWcsg38JcXr2zSy_m7qieDix6SxA,698
|
|
33
36
|
lambdadb/models/status.py,sha256=pl66KcDT9ao6yLXXXOBqerh_StjpNiJb34Yf7VoijEI,250
|
|
34
37
|
lambdadb/models/updatecollectionop.py,sha256=oj-BlL3i-o_9WETep10kOQfAIEfO73FgJ2XR4QT_5JI,1790
|
|
35
|
-
lambdadb/models/updatedocsop.py,sha256=
|
|
36
|
-
lambdadb/models/upsertdocsop.py,sha256=
|
|
38
|
+
lambdadb/models/updatedocsop.py,sha256=u2YYXaJlEp9M-eu3vue6YTun-Vs8yDHn_NNZgKlTIvQ,1451
|
|
39
|
+
lambdadb/models/upsertdocsop.py,sha256=LjR_BbUgOwfPffpZ3N_MK0U60CL4izQl85zOWbHfNSM,1345
|
|
37
40
|
lambdadb/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
38
41
|
lambdadb/sdk.py,sha256=r_MR7eLbat4LunLaRLw3GdkxXubZ6hEn0kegigYJ3vk,6097
|
|
39
42
|
lambdadb/sdkconfiguration.py,sha256=-sHtaoBluBcNOYRTKxLMnovJazRm3ZWV9VOYCSS0UNY,1589
|
|
40
43
|
lambdadb/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
41
44
|
lambdadb/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
42
|
-
lambdadb/utils/__init__.py,sha256=
|
|
45
|
+
lambdadb/utils/__init__.py,sha256=7PZhKrdGnbPpXnPNaJR8C8QXpKC-mkyaJA_zglZUDLc,5547
|
|
43
46
|
lambdadb/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
|
44
47
|
lambdadb/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
45
48
|
lambdadb/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
|
|
@@ -52,10 +55,10 @@ lambdadb/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI
|
|
|
52
55
|
lambdadb/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
|
53
56
|
lambdadb/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
|
54
57
|
lambdadb/utils/security.py,sha256=Dq3M6Ee_x_uWRPZ7vvM4XQNxjCMSlphrRn6qVs1pljU,6034
|
|
55
|
-
lambdadb/utils/serializers.py,sha256=
|
|
58
|
+
lambdadb/utils/serializers.py,sha256=MMoIZJlmaQleupttusWZC6JUi-sRJEpEMGmdBpnRo4Y,6432
|
|
56
59
|
lambdadb/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
57
60
|
lambdadb/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
58
|
-
lambdadb-0.3.
|
|
59
|
-
lambdadb-0.3.
|
|
60
|
-
lambdadb-0.3.
|
|
61
|
-
lambdadb-0.3.
|
|
61
|
+
lambdadb-0.3.6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
62
|
+
lambdadb-0.3.6.dist-info/METADATA,sha256=7agoTL_4vw71fkDRNF_Hoha7TkdB8s4HLhSblcbANn4,20891
|
|
63
|
+
lambdadb-0.3.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
64
|
+
lambdadb-0.3.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|