lambdadb 0.3.5__py3-none-any.whl → 0.4.0__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.

Files changed (37) hide show
  1. lambdadb/_version.py +3 -3
  2. lambdadb/basesdk.py +4 -4
  3. lambdadb/collections.py +280 -452
  4. lambdadb/docs.py +261 -425
  5. lambdadb/errors/__init__.py +9 -0
  6. lambdadb/errors/apierror.py +30 -14
  7. lambdadb/errors/badrequest_error.py +12 -6
  8. lambdadb/errors/internalservererror.py +12 -6
  9. lambdadb/errors/lambdadberror.py +26 -0
  10. lambdadb/errors/no_response_error.py +13 -0
  11. lambdadb/errors/resourcealreadyexists_error.py +12 -6
  12. lambdadb/errors/resourcenotfound_error.py +12 -6
  13. lambdadb/errors/responsevalidationerror.py +25 -0
  14. lambdadb/errors/toomanyrequests_error.py +12 -6
  15. lambdadb/errors/unauthenticated_error.py +12 -6
  16. lambdadb/models/__init__.py +0 -54
  17. lambdadb/models/bulkupsertdocsop.py +0 -9
  18. lambdadb/models/createcollectionop.py +2 -23
  19. lambdadb/models/deletecollectionop.py +0 -9
  20. lambdadb/models/deletedocsop.py +3 -20
  21. lambdadb/models/fetchdocsop.py +3 -20
  22. lambdadb/models/getbulkupsertdocsop.py +0 -9
  23. lambdadb/models/getcollectionop.py +0 -9
  24. lambdadb/models/listcollectionsop.py +1 -17
  25. lambdadb/models/querycollectionop.py +7 -40
  26. lambdadb/models/updatecollectionop.py +0 -9
  27. lambdadb/models/updatedocsop.py +3 -20
  28. lambdadb/models/upsertdocsop.py +3 -20
  29. lambdadb/sdk.py +9 -1
  30. lambdadb/sdkconfiguration.py +4 -3
  31. lambdadb/utils/__init__.py +3 -0
  32. lambdadb/utils/serializers.py +21 -3
  33. {lambdadb-0.3.5.dist-info → lambdadb-0.4.0.dist-info}/METADATA +94 -55
  34. lambdadb-0.4.0.dist-info/RECORD +64 -0
  35. lambdadb-0.3.5.dist-info/RECORD +0 -61
  36. {lambdadb-0.3.5.dist-info → lambdadb-0.4.0.dist-info}/LICENSE +0 -0
  37. {lambdadb-0.3.5.dist-info → lambdadb-0.4.0.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lambdadb
3
- Version: 0.3.5
3
+ Version: 0.4.0
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -135,7 +135,7 @@ with LambdaDB(
135
135
  project_api_key="<YOUR_PROJECT_API_KEY>",
136
136
  ) as lambda_db:
137
137
 
138
- res = lambda_db.collections.list(project_name="<value>")
138
+ res = lambda_db.collections.list_collections()
139
139
 
140
140
  # Handle response
141
141
  print(res)
@@ -155,7 +155,7 @@ async def main():
155
155
  project_api_key="<YOUR_PROJECT_API_KEY>",
156
156
  ) as lambda_db:
157
157
 
158
- res = await lambda_db.collections.list_async(project_name="<value>")
158
+ res = await lambda_db.collections.list_collections_async()
159
159
 
160
160
  # Handle response
161
161
  print(res)
@@ -184,7 +184,7 @@ with LambdaDB(
184
184
  project_api_key="<YOUR_PROJECT_API_KEY>",
185
185
  ) as lambda_db:
186
186
 
187
- res = lambda_db.collections.list(project_name="<value>")
187
+ res = lambda_db.collections.list_collections()
188
188
 
189
189
  # Handle response
190
190
  print(res)
@@ -200,21 +200,21 @@ with LambdaDB(
200
200
 
201
201
  ### [collections](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md)
202
202
 
203
- * [list](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#list) - List all collections in an existing project.
204
- * [create](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#create) - Create a collection.
205
- * [delete](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#delete) - Delete an existing collection.
206
- * [get](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#get) - Get metadata of an existing collection.
207
- * [update](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#update) - Configure a collection.
208
- * [query](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#query) - Search a collection with a query and return the most similar documents.
203
+ * [list_collections](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#list_collections) - List all collections in an existing project.
204
+ * [create_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#create_collection) - Create a collection.
205
+ * [delete_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#delete_collection) - Delete an existing collection.
206
+ * [get_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#get_collection) - Get metadata of an existing collection.
207
+ * [update_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#update_collection) - Configure a collection.
208
+ * [query_collection](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/collections/README.md#query_collection) - Search a collection with a query and return the most similar documents.
209
209
 
210
210
  #### [collections.docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md)
211
211
 
212
- * [upsert](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#upsert) - Upsert documents into a collection. Note that the maximum supported payload size is 6MB.
213
- * [get_bulk_upsert](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#get_bulk_upsert) - Request required info to upload documents.
214
- * [bulk_upsert](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#bulk_upsert) - Bulk upsert documents into a collection. Note that the maximum supported object size is 200MB.
212
+ * [upsert_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#upsert_docs) - Upsert documents into a collection. Note that the maximum supported payload size is 6MB.
213
+ * [get_bulk_upsert_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#get_bulk_upsert_docs) - Request required info to upload documents.
214
+ * [bulk_upsert_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#bulk_upsert_docs) - Bulk upsert documents into a collection. Note that the maximum supported object size is 200MB.
215
215
  * [update_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#update_docs) - Update documents in a collection. Note that the maximum supported payload size is 6MB.
216
- * [delete](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#delete) - Delete documents by document IDs or query filter from a collection.
217
- * [fetch](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#fetch) - Lookup and return documents by document IDs from a collection.
216
+ * [delete_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#delete_docs) - Delete documents by document IDs or query filter from a collection.
217
+ * [fetch_docs](https://github.com/lambdadb/lambdadb-python-client/blob/master/docs/sdks/docs/README.md#fetch_docs) - Lookup and return documents by document IDs from a collection.
218
218
 
219
219
 
220
220
  </details>
@@ -235,7 +235,7 @@ with LambdaDB(
235
235
  project_api_key="<YOUR_PROJECT_API_KEY>",
236
236
  ) as lambda_db:
237
237
 
238
- res = lambda_db.collections.list(project_name="<value>",
238
+ res = lambda_db.collections.list_collections(,
239
239
  RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
240
240
 
241
241
  # Handle response
@@ -254,7 +254,7 @@ with LambdaDB(
254
254
  project_api_key="<YOUR_PROJECT_API_KEY>",
255
255
  ) as lambda_db:
256
256
 
257
- res = lambda_db.collections.list(project_name="<value>")
257
+ res = lambda_db.collections.list_collections()
258
258
 
259
259
  # Handle response
260
260
  print(res)
@@ -265,29 +265,18 @@ with LambdaDB(
265
265
  <!-- Start Error Handling [errors] -->
266
266
  ## Error Handling
267
267
 
268
- Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.
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
- By default, an API error will raise a errors.APIError exception, which has the following properties:
271
-
272
- | Property | Type | Description |
273
- |-----------------|------------------|-----------------------|
274
- | `.status_code` | *int* | The HTTP status code |
275
- | `.message` | *str* | The error message |
276
- | `.raw_response` | *httpx.Response* | The raw HTTP response |
277
- | `.body` | *str* | The response content |
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
 
@@ -298,32 +287,82 @@ with LambdaDB(
298
287
  res = None
299
288
  try:
300
289
 
301
- res = lambda_db.collections.list(project_name="<value>")
290
+ res = lambda_db.collections.list_collections()
302
291
 
303
292
  # Handle response
304
293
  print(res)
305
294
 
306
- except errors.UnauthenticatedError as e:
307
- # handle e.data: errors.UnauthenticatedErrorData
308
- raise(e)
309
- except errors.ResourceNotFoundError as e:
310
- # handle e.data: errors.ResourceNotFoundErrorData
311
- raise(e)
312
- except errors.TooManyRequestsError as e:
313
- # handle e.data: errors.TooManyRequestsErrorData
314
- raise(e)
315
- except errors.InternalServerError as e:
316
- # handle e.data: errors.InternalServerErrorData
317
- raise(e)
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] -->
325
338
  ## Server Selection
326
339
 
340
+ ### Server Variables
341
+
342
+ The default server `https://{baseUrl}` contains variables and is set to `https://api.lambdadb.com/projects/default` by default. To override default values, the following parameters are available when initializing the SDK client instance:
343
+
344
+ | Variable | Parameter | Default | Description |
345
+ | --------- | --------------- | ------------------------------------- | ----------------------- |
346
+ | `baseUrl` | `base_url: str` | `"api.lambdadb.com/projects/default"` | The base URL of the API |
347
+
348
+ #### Example
349
+
350
+ ```python
351
+ from lambdadb import LambdaDB
352
+
353
+
354
+ with LambdaDB(
355
+ base_url="https://functional-jury.net/"
356
+ project_api_key="<YOUR_PROJECT_API_KEY>",
357
+ ) as lambda_db:
358
+
359
+ res = lambda_db.collections.list_collections()
360
+
361
+ # Handle response
362
+ print(res)
363
+
364
+ ```
365
+
327
366
  ### Override Server URL Per-Client
328
367
 
329
368
  The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
@@ -332,11 +371,11 @@ from lambdadb import LambdaDB
332
371
 
333
372
 
334
373
  with LambdaDB(
335
- server_url="https://{baseUrl}",
374
+ server_url="https://api.lambdadb.com/projects/default",
336
375
  project_api_key="<YOUR_PROJECT_API_KEY>",
337
376
  ) as lambda_db:
338
377
 
339
- res = lambda_db.collections.list(project_name="<value>")
378
+ res = lambda_db.collections.list_collections()
340
379
 
341
380
  # Handle response
342
381
  print(res)
@@ -0,0 +1,64 @@
1
+ lambdadb/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
2
+ lambdadb/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
3
+ lambdadb/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
+ lambdadb/_hooks/sdkhooks.py,sha256=KGhPvIuUjurDBQOT6t-aWgiu1YDRXpn-OMz6_PkUdFk,2463
5
+ lambdadb/_hooks/types.py,sha256=09dUW5q4HN9aVFAhskDLQqjxLPBfDD97uuucmdcBa6Q,2987
6
+ lambdadb/_version.py,sha256=CycIF9mTagyzhpxwmnBfhFMcyWprDvIzUDwq1OlGvco,458
7
+ lambdadb/basesdk.py,sha256=wu3Ri2Po6LxhBngXYkD4-Grlxa0DX9I18cPH2vme-uI,11887
8
+ lambdadb/collections.py,sha256=R5ZVyDWLcalEVDcAn0Kur6fdFu-uBe22eCgpRME6Xf4,63021
9
+ lambdadb/docs.py,sha256=E_anmIJ5n2jptXA5-kX67EfO7tVVKMOqOrjjzhr27_I,63143
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
21
+ lambdadb/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
22
+ lambdadb/models/__init__.py,sha256=lkwWTHnJ-bFKtuR3aoL42LJravPne35jz3UtdE6hKUs,10311
23
+ lambdadb/models/bulkupsertdocsop.py,sha256=r_ExX7BFfF8oRfbeXWdX-DhSAry8ObvedvVE3z-Ky8I,1146
24
+ lambdadb/models/collectionresponse.py,sha256=ZIF-GLeOV8RS-7MBSXGQuOjzOqeqCoTV_a5cndfnpug,1943
25
+ lambdadb/models/createcollectionop.py,sha256=vFAp8DuYCs23NDOt1z7kZHvFzgK5ioo86X2Q9c35e5M,1886
26
+ lambdadb/models/deletecollectionop.py,sha256=8EUqFp6WOz9oHFqJxP8mXKowjFl2ZRYvMPIbALaU9Yk,627
27
+ lambdadb/models/deletedocsop.py,sha256=ObFx3COKkdceW13G1damN_fT2_P6GSLjUXLFwqv1m6U,1296
28
+ lambdadb/models/fetchdocsop.py,sha256=mKJOvdQF7vELyqC_0TbiZz1TvKRTZ9ihPYtNDKY7UF4,2790
29
+ lambdadb/models/getbulkupsertdocsop.py,sha256=YtB3TyAHd1APvAVDb31edqRjQS3zVeZFobo7FJT4qd8,2282
30
+ lambdadb/models/getcollectionop.py,sha256=Zew8mrD3JILVgRhAaTNBqVGlV6MRMyifsn4NXGOtl_M,955
31
+ lambdadb/models/indexconfigs_union.py,sha256=LW0afqNPHxSd7PVyhi9bWALLkofPpewIzWCH5hlghkI,2055
32
+ lambdadb/models/listcollectionsop.py,sha256=2A7FEUqenNAGTvf_uROGTuKGsx0Ilgmx9bKcgYG81as,603
33
+ lambdadb/models/messageresponse.py,sha256=0QI5LuyZVLh0Z6Jytwlo2ebAZ6x1bw5TVe7zvzQCEnM,300
34
+ lambdadb/models/querycollectionop.py,sha256=K_pR4Kja-nDLul5WC9tezelldCduIcoHyoj9zJYa0qw,3740
35
+ lambdadb/models/security.py,sha256=nP-VTWFY6O-UPNPsWcsg38JcXr2zSy_m7qieDix6SxA,698
36
+ lambdadb/models/status.py,sha256=pl66KcDT9ao6yLXXXOBqerh_StjpNiJb34Yf7VoijEI,250
37
+ lambdadb/models/updatecollectionop.py,sha256=MIy5LNAFX_DkHdnG8g7OmvdUCLSv2tckmM6MvhjMLMk,1546
38
+ lambdadb/models/updatedocsop.py,sha256=HwtHdJBHQc8WphlqD_pLwQsI2kcC4z1mRQ-u0EoxiZE,1207
39
+ lambdadb/models/upsertdocsop.py,sha256=8eOyS_VRJd0xiNipfCPItuqM2VvvgD4USwRra-tvCz4,1101
40
+ lambdadb/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
41
+ lambdadb/sdk.py,sha256=mF4FcqplI2G1J9VKQtzkchgQ4Qig8G8WJjlM-7-fY-w,6439
42
+ lambdadb/sdkconfiguration.py,sha256=BuZQUiM98WTxejG3Pf3bRXwZhxeeEyt6cSTlP4JLxvU,1709
43
+ lambdadb/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
44
+ lambdadb/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
45
+ lambdadb/utils/__init__.py,sha256=7PZhKrdGnbPpXnPNaJR8C8QXpKC-mkyaJA_zglZUDLc,5547
46
+ lambdadb/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
47
+ lambdadb/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
48
+ lambdadb/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
49
+ lambdadb/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
50
+ lambdadb/utils/forms.py,sha256=EJdnrfIkuwpDtekyHutla0HjI_FypTYcmYNyPKEu_W0,6874
51
+ lambdadb/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
52
+ lambdadb/utils/logger.py,sha256=cU5AqG-IoxPayWXFZSayzLILandB50DjxgadREK-NAE,675
53
+ lambdadb/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
54
+ lambdadb/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
55
+ lambdadb/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
56
+ lambdadb/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
57
+ lambdadb/utils/security.py,sha256=Dq3M6Ee_x_uWRPZ7vvM4XQNxjCMSlphrRn6qVs1pljU,6034
58
+ lambdadb/utils/serializers.py,sha256=MMoIZJlmaQleupttusWZC6JUi-sRJEpEMGmdBpnRo4Y,6432
59
+ lambdadb/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
60
+ lambdadb/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
61
+ lambdadb-0.4.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
62
+ lambdadb-0.4.0.dist-info/METADATA,sha256=3RmXA6oI8aWk_B-ebWZw1eM21V90X1X_a7RLbnb6Rl8,21858
63
+ lambdadb-0.4.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
64
+ lambdadb-0.4.0.dist-info/RECORD,,
@@ -1,61 +0,0 @@
1
- lambdadb/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
2
- lambdadb/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
3
- lambdadb/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
- lambdadb/_hooks/sdkhooks.py,sha256=KGhPvIuUjurDBQOT6t-aWgiu1YDRXpn-OMz6_PkUdFk,2463
5
- lambdadb/_hooks/types.py,sha256=09dUW5q4HN9aVFAhskDLQqjxLPBfDD97uuucmdcBa6Q,2987
6
- lambdadb/_version.py,sha256=mUNQT60-6bl5j9CY2piPzK71WbiJ0yB9aEx7uEANrlM,458
7
- lambdadb/basesdk.py,sha256=Uo8ZEdXVHmS_j1F9on47XeJD6sj9plIrna_6Oo_1I-I,11853
8
- lambdadb/collections.py,sha256=FJN_V6_q05oplCvCvwHB04IXtUbW9vwSk3v29_r1Ab8,69031
9
- lambdadb/docs.py,sha256=pUv9XW8Xdk3y2TJxekbaSYlnSboU3fU0TxFts7uY_CY,69126
10
- lambdadb/errors/__init__.py,sha256=V406LU9TLJQ0eocD79_PpsCjOmH6DAUnBTKd0Ra23uQ,2637
11
- lambdadb/errors/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
12
- lambdadb/errors/badrequest_error.py,sha256=OX1fo-ja-N-zqV4opH_LXnz_vwa2gZbgDx0aAeNMYL0,514
13
- lambdadb/errors/internalservererror.py,sha256=O0VPyz_TliHsqNzAVRLirKSME4vry_PK3gqWXwod9kM,534
14
- lambdadb/errors/resourcealreadyexists_error.py,sha256=5NV-yict5rCGXeP9X2P-DjjPB57hRAOavs340v8wXb8,569
15
- lambdadb/errors/resourcenotfound_error.py,sha256=VfsNJ9xJjMzZFoQGt5wu6JkUpRzFhrPn79Z_4jBmUY0,544
16
- lambdadb/errors/toomanyrequests_error.py,sha256=yHFjs27JCb5mVmOZZqKmA4IG1ONs6FVERWIK_Gwgqwo,539
17
- lambdadb/errors/unauthenticated_error.py,sha256=HD2a2JwLcIDefnkDLdbHJCbkY28u2cmAGOI8S6Q5m48,539
18
- lambdadb/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
19
- lambdadb/models/__init__.py,sha256=WSl2r1PGIVHgCHxnfOFF_uulLqpyUqSVGNgzM9eSvPM,12134
20
- lambdadb/models/bulkupsertdocsop.py,sha256=wjADqZrC71TNmyGUWhuQ5ZVibZc4dL9SACLdWHumToo,1390
21
- lambdadb/models/collectionresponse.py,sha256=ZIF-GLeOV8RS-7MBSXGQuOjzOqeqCoTV_a5cndfnpug,1943
22
- lambdadb/models/createcollectionop.py,sha256=KoQlGTr3eYr8GINmlslL8DDf5dCY97hliVuevtD_Fr8,2518
23
- lambdadb/models/deletecollectionop.py,sha256=fy4Y0dGAB8AJbGxryKnE6xOCj_QTi9R4SzkcYwY74WY,871
24
- lambdadb/models/deletedocsop.py,sha256=aPWHLQZyBtPsC-eVSt9GUEpEAfqhFmOvjkVmWmql_is,1635
25
- lambdadb/models/fetchdocsop.py,sha256=LV8raabA2ZyFvPsW_-5nmczsegj-H4cTF-AWHdZo4kw,3133
26
- lambdadb/models/getbulkupsertdocsop.py,sha256=S67W9IBoGXP8EVEGc6PfKkJgmOydzBhkzu6f6g2eGOU,2526
27
- lambdadb/models/getcollectionop.py,sha256=Ef5uUwNHfnzU8Ij_E_8j1s4qYDy36C7mXiQZ8LY8VME,1199
28
- lambdadb/models/indexconfigs_union.py,sha256=LW0afqNPHxSd7PVyhi9bWALLkofPpewIzWCH5hlghkI,2055
29
- lambdadb/models/listcollectionsop.py,sha256=pfBvxfnsFwgsxPUg0Dkl1WeMOcsjvdOTcfx1iPUktEM,1028
30
- lambdadb/models/messageresponse.py,sha256=0QI5LuyZVLh0Z6Jytwlo2ebAZ6x1bw5TVe7zvzQCEnM,300
31
- lambdadb/models/querycollectionop.py,sha256=_Vn7cEMKXhH58nygR7zxzenB6V8EKeI7-K23g33H0jQ,4275
32
- lambdadb/models/security.py,sha256=nP-VTWFY6O-UPNPsWcsg38JcXr2zSy_m7qieDix6SxA,698
33
- lambdadb/models/status.py,sha256=pl66KcDT9ao6yLXXXOBqerh_StjpNiJb34Yf7VoijEI,250
34
- lambdadb/models/updatecollectionop.py,sha256=oj-BlL3i-o_9WETep10kOQfAIEfO73FgJ2XR4QT_5JI,1790
35
- lambdadb/models/updatedocsop.py,sha256=mtrU_5vNSzI90cprqb4IttiHVknCclcTnVWrv9GQ2tA,1542
36
- lambdadb/models/upsertdocsop.py,sha256=aLj0ohOrwEVNOXLZI8DuIK-Z0xWdC-SBi6vDmUoH54I,1436
37
- lambdadb/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
38
- lambdadb/sdk.py,sha256=r_MR7eLbat4LunLaRLw3GdkxXubZ6hEn0kegigYJ3vk,6097
39
- lambdadb/sdkconfiguration.py,sha256=-sHtaoBluBcNOYRTKxLMnovJazRm3ZWV9VOYCSS0UNY,1589
40
- lambdadb/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
41
- lambdadb/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
42
- lambdadb/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
43
- lambdadb/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
44
- lambdadb/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
45
- lambdadb/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
46
- lambdadb/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
47
- lambdadb/utils/forms.py,sha256=EJdnrfIkuwpDtekyHutla0HjI_FypTYcmYNyPKEu_W0,6874
48
- lambdadb/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
49
- lambdadb/utils/logger.py,sha256=cU5AqG-IoxPayWXFZSayzLILandB50DjxgadREK-NAE,675
50
- lambdadb/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
51
- lambdadb/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
52
- lambdadb/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
53
- lambdadb/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
54
- lambdadb/utils/security.py,sha256=Dq3M6Ee_x_uWRPZ7vvM4XQNxjCMSlphrRn6qVs1pljU,6034
55
- lambdadb/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
56
- lambdadb/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
57
- lambdadb/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
58
- lambdadb-0.3.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
59
- lambdadb-0.3.5.dist-info/METADATA,sha256=DxE-j47yJgrDit8bfjgBqFttks75vowhJukdUHObkqQ,18689
60
- lambdadb-0.3.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
61
- lambdadb-0.3.5.dist-info/RECORD,,