lambdadb 0.1.2__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 (66) hide show
  1. lambdadb/__init__.py +17 -0
  2. lambdadb/_hooks/__init__.py +5 -0
  3. lambdadb/_hooks/registration.py +13 -0
  4. lambdadb/_hooks/sdkhooks.py +76 -0
  5. lambdadb/_hooks/types.py +106 -0
  6. lambdadb/_version.py +15 -0
  7. lambdadb/basesdk.py +358 -0
  8. lambdadb/collections.py +1630 -0
  9. lambdadb/docs.py +1328 -0
  10. lambdadb/errors/__init__.py +74 -0
  11. lambdadb/errors/apierror.py +22 -0
  12. lambdadb/errors/badrequest_error.py +20 -0
  13. lambdadb/errors/internalservererror.py +20 -0
  14. lambdadb/errors/resourcealreadyexists_error.py +20 -0
  15. lambdadb/errors/resourcenotfound_error.py +20 -0
  16. lambdadb/errors/toomanyrequests_error.py +20 -0
  17. lambdadb/errors/unauthenticated_error.py +20 -0
  18. lambdadb/httpclient.py +126 -0
  19. lambdadb/models/__init__.py +420 -0
  20. lambdadb/models/bulkupsertdocsop.py +59 -0
  21. lambdadb/models/collectionresponse.py +64 -0
  22. lambdadb/models/createcollectionop.py +64 -0
  23. lambdadb/models/createprojectop.py +39 -0
  24. lambdadb/models/deletecollectionop.py +43 -0
  25. lambdadb/models/deletedocsop.py +88 -0
  26. lambdadb/models/deleteprojectop.py +52 -0
  27. lambdadb/models/fetchdocsop.py +102 -0
  28. lambdadb/models/getbulkupsertdocsop.py +82 -0
  29. lambdadb/models/getcollectionop.py +30 -0
  30. lambdadb/models/getprojectop.py +39 -0
  31. lambdadb/models/indexconfigs_union.py +95 -0
  32. lambdadb/models/listcollectionsop.py +35 -0
  33. lambdadb/models/listprojectsop.py +38 -0
  34. lambdadb/models/projectresponse.py +38 -0
  35. lambdadb/models/querycollectionop.py +152 -0
  36. lambdadb/models/security.py +25 -0
  37. lambdadb/models/status.py +12 -0
  38. lambdadb/models/updatecollectionop.py +48 -0
  39. lambdadb/models/updateprojectop.py +58 -0
  40. lambdadb/models/upsertdocsop.py +67 -0
  41. lambdadb/projects.py +1228 -0
  42. lambdadb/py.typed +1 -0
  43. lambdadb/sdk.py +170 -0
  44. lambdadb/sdkconfiguration.py +56 -0
  45. lambdadb/types/__init__.py +21 -0
  46. lambdadb/types/basemodel.py +39 -0
  47. lambdadb/utils/__init__.py +187 -0
  48. lambdadb/utils/annotations.py +55 -0
  49. lambdadb/utils/datetimes.py +23 -0
  50. lambdadb/utils/enums.py +74 -0
  51. lambdadb/utils/eventstreaming.py +238 -0
  52. lambdadb/utils/forms.py +202 -0
  53. lambdadb/utils/headers.py +136 -0
  54. lambdadb/utils/logger.py +27 -0
  55. lambdadb/utils/metadata.py +118 -0
  56. lambdadb/utils/queryparams.py +205 -0
  57. lambdadb/utils/requestbodies.py +66 -0
  58. lambdadb/utils/retries.py +217 -0
  59. lambdadb/utils/security.py +192 -0
  60. lambdadb/utils/serializers.py +248 -0
  61. lambdadb/utils/url.py +155 -0
  62. lambdadb/utils/values.py +137 -0
  63. lambdadb-0.1.2.dist-info/LICENSE +201 -0
  64. lambdadb-0.1.2.dist-info/METADATA +514 -0
  65. lambdadb-0.1.2.dist-info/RECORD +66 -0
  66. lambdadb-0.1.2.dist-info/WHEEL +4 -0
@@ -0,0 +1,514 @@
1
+ Metadata-Version: 2.3
2
+ Name: lambdadb
3
+ Version: 0.1.2
4
+ Summary: Python Client SDK Generated by Speakeasy.
5
+ Author: Speakeasy
6
+ Requires-Python: >=3.9.2
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Requires-Dist: httpx (>=0.28.1)
13
+ Requires-Dist: pydantic (>=2.11.2)
14
+ Description-Content-Type: text/markdown
15
+
16
+ # lambdadb
17
+
18
+ Developer-friendly & type-safe Python SDK specifically catered to leverage *lambdadb* API.
19
+
20
+ <div align="left">
21
+ <a href="https://www.speakeasy.com/?utm_source=lambdadb&utm_campaign=python"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
22
+ <a href="https://opensource.org/licenses/MIT">
23
+ <img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
24
+ </a>
25
+ </div>
26
+
27
+
28
+ <br /><br />
29
+ > [!IMPORTANT]
30
+ > This SDK is not yet ready for production use. To complete setup please follow the steps outlined in your [workspace](https://app.speakeasy.com/org/lambdadb/lambdadb-python). Delete this section before > publishing to a package manager.
31
+
32
+ <!-- Start Summary [summary] -->
33
+ ## Summary
34
+
35
+ LambdaDB API: LambdaDB Open API Spec
36
+ <!-- End Summary [summary] -->
37
+
38
+ <!-- Start Table of Contents [toc] -->
39
+ ## Table of Contents
40
+ <!-- $toc-max-depth=2 -->
41
+ * [lambdadb](#lambdadb)
42
+ * [SDK Installation](#sdk-installation)
43
+ * [IDE Support](#ide-support)
44
+ * [SDK Example Usage](#sdk-example-usage)
45
+ * [Authentication](#authentication)
46
+ * [Available Resources and Operations](#available-resources-and-operations)
47
+ * [Retries](#retries)
48
+ * [Error Handling](#error-handling)
49
+ * [Server Selection](#server-selection)
50
+ * [Custom HTTP Client](#custom-http-client)
51
+ * [Resource Management](#resource-management)
52
+ * [Debugging](#debugging)
53
+ * [Development](#development)
54
+ * [Maturity](#maturity)
55
+ * [Contributions](#contributions)
56
+
57
+ <!-- End Table of Contents [toc] -->
58
+
59
+ <!-- Start SDK Installation [installation] -->
60
+ ## SDK Installation
61
+
62
+ > [!TIP]
63
+ > To finish publishing your SDK to PyPI you must [run your first generation action](https://www.speakeasy.com/docs/github-setup#step-by-step-guide).
64
+
65
+
66
+ > [!NOTE]
67
+ > **Python version upgrade policy**
68
+ >
69
+ > Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.
70
+
71
+ The SDK can be installed with either *pip* or *poetry* package managers.
72
+
73
+ ### PIP
74
+
75
+ *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
76
+
77
+ ```bash
78
+ pip install git+<UNSET>.git
79
+ ```
80
+
81
+ ### Poetry
82
+
83
+ *Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.
84
+
85
+ ```bash
86
+ poetry add git+<UNSET>.git
87
+ ```
88
+
89
+ ### Shell and script usage with `uv`
90
+
91
+ You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:
92
+
93
+ ```shell
94
+ uvx --from lambdadb python
95
+ ```
96
+
97
+ It's also possible to write a standalone Python script without needing to set up a whole project like so:
98
+
99
+ ```python
100
+ #!/usr/bin/env -S uv run --script
101
+ # /// script
102
+ # requires-python = ">=3.9"
103
+ # dependencies = [
104
+ # "lambdadb",
105
+ # ]
106
+ # ///
107
+
108
+ from lambdadb import Lambdadb
109
+
110
+ sdk = Lambdadb(
111
+ # SDK arguments
112
+ )
113
+
114
+ # Rest of script here...
115
+ ```
116
+
117
+ Once that is saved to a file, you can run it with `uv run script.py` where
118
+ `script.py` can be replaced with the actual file name.
119
+ <!-- End SDK Installation [installation] -->
120
+
121
+ <!-- Start IDE Support [idesupport] -->
122
+ ## IDE Support
123
+
124
+ ### PyCharm
125
+
126
+ Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.
127
+
128
+ - [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
129
+ <!-- End IDE Support [idesupport] -->
130
+
131
+ <!-- Start SDK Example Usage [usage] -->
132
+ ## SDK Example Usage
133
+
134
+ ### Example
135
+
136
+ ```python
137
+ # Synchronous Example
138
+ from lambdadb import Lambdadb, models
139
+
140
+
141
+ with Lambdadb() as l_client:
142
+
143
+ res = l_client.projects.list(security=models.ListProjectsSecurity(
144
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
145
+ ))
146
+
147
+ # Handle response
148
+ print(res)
149
+ ```
150
+
151
+ </br>
152
+
153
+ The same SDK client can also be used to make asychronous requests by importing asyncio.
154
+ ```python
155
+ # Asynchronous Example
156
+ import asyncio
157
+ from lambdadb import Lambdadb, models
158
+
159
+ async def main():
160
+
161
+ async with Lambdadb() as l_client:
162
+
163
+ res = await l_client.projects.list_async(security=models.ListProjectsSecurity(
164
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
165
+ ))
166
+
167
+ # Handle response
168
+ print(res)
169
+
170
+ asyncio.run(main())
171
+ ```
172
+ <!-- End SDK Example Usage [usage] -->
173
+
174
+ <!-- Start Authentication [security] -->
175
+ ## Authentication
176
+
177
+ ### Per-Client Security Schemes
178
+
179
+ This SDK supports the following security scheme globally:
180
+
181
+ | Name | Type | Scheme | Environment Variable |
182
+ | ----------------- | ------ | ------- | -------------------------- |
183
+ | `project_api_key` | apiKey | API key | `LAMBDADB_PROJECT_API_KEY` |
184
+
185
+ To authenticate with the API the `project_api_key` parameter must be set when initializing the SDK client instance. For example:
186
+ ```python
187
+ from lambdadb import Lambdadb
188
+
189
+
190
+ with Lambdadb(
191
+ project_api_key="<YOUR_PROJECT_API_KEY>",
192
+ ) as l_client:
193
+
194
+ res = l_client.projects.collections.list(project_name="<value>")
195
+
196
+ # Handle response
197
+ print(res)
198
+
199
+ ```
200
+
201
+ ### Per-Operation Security Schemes
202
+
203
+ Some operations in this SDK require the security scheme to be specified at the request level. For example:
204
+ ```python
205
+ from lambdadb import Lambdadb, models
206
+
207
+
208
+ with Lambdadb() as l_client:
209
+
210
+ res = l_client.projects.list(security=models.ListProjectsSecurity(
211
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
212
+ ))
213
+
214
+ # Handle response
215
+ print(res)
216
+
217
+ ```
218
+ <!-- End Authentication [security] -->
219
+
220
+ <!-- Start Available Resources and Operations [operations] -->
221
+ ## Available Resources and Operations
222
+
223
+ <details open>
224
+ <summary>Available methods</summary>
225
+
226
+
227
+ ### [projects](docs/sdks/projects/README.md)
228
+
229
+ * [list](docs/sdks/projects/README.md#list) - List all projects in an account.
230
+ * [create](docs/sdks/projects/README.md#create) - Create a project.
231
+ * [get](docs/sdks/projects/README.md#get) - Get metadata of an existing project.
232
+ * [delete](docs/sdks/projects/README.md#delete) - Delete an existing project.
233
+ * [update](docs/sdks/projects/README.md#update) - Configure an existing project
234
+
235
+ #### [projects.collections](docs/sdks/collections/README.md)
236
+
237
+ * [list](docs/sdks/collections/README.md#list) - List all collections in an existing project.
238
+ * [create](docs/sdks/collections/README.md#create) - Create an collection.
239
+ * [delete](docs/sdks/collections/README.md#delete) - Delete an existing collection.
240
+ * [get](docs/sdks/collections/README.md#get) - Get metadata of an existing collection.
241
+ * [update](docs/sdks/collections/README.md#update) - Configure an collection.
242
+ * [query](docs/sdks/collections/README.md#query) - Search an collection with a query and return the most similar documents.
243
+
244
+ #### [projects.collections.docs](docs/sdks/docs/README.md)
245
+
246
+ * [upsert](docs/sdks/docs/README.md#upsert) - Upsert documents into an collection. Note that the maximum supported payload size is 6MB.
247
+ * [get_bulk_upsert](docs/sdks/docs/README.md#get_bulk_upsert) - Request required info to upload documents.
248
+ * [bulk_upsert](docs/sdks/docs/README.md#bulk_upsert) - Bulk upsert documents into an collection. Note that the maximum supported object size is 200MB.
249
+ * [delete](docs/sdks/docs/README.md#delete) - Delete documents by document IDs or query filter from an collection.
250
+ * [fetch](docs/sdks/docs/README.md#fetch) - Lookup and return documents by document IDs from an collection.
251
+
252
+ </details>
253
+ <!-- End Available Resources and Operations [operations] -->
254
+
255
+ <!-- Start Retries [retries] -->
256
+ ## Retries
257
+
258
+ Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
259
+
260
+ To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
261
+ ```python
262
+ from lambdadb import Lambdadb, models
263
+ from lambdadb.utils import BackoffStrategy, RetryConfig
264
+
265
+
266
+ with Lambdadb() as l_client:
267
+
268
+ res = l_client.projects.list(security=models.ListProjectsSecurity(
269
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
270
+ ),
271
+ RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
272
+
273
+ # Handle response
274
+ print(res)
275
+
276
+ ```
277
+
278
+ If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
279
+ ```python
280
+ from lambdadb import Lambdadb, models
281
+ from lambdadb.utils import BackoffStrategy, RetryConfig
282
+
283
+
284
+ with Lambdadb(
285
+ retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
286
+ ) as l_client:
287
+
288
+ res = l_client.projects.list(security=models.ListProjectsSecurity(
289
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
290
+ ))
291
+
292
+ # Handle response
293
+ print(res)
294
+
295
+ ```
296
+ <!-- End Retries [retries] -->
297
+
298
+ <!-- Start Error Handling [errors] -->
299
+ ## Error Handling
300
+
301
+ Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.
302
+
303
+ By default, an API error will raise a errors.APIError exception, which has the following properties:
304
+
305
+ | Property | Type | Description |
306
+ |-----------------|------------------|-----------------------|
307
+ | `.status_code` | *int* | The HTTP status code |
308
+ | `.message` | *str* | The error message |
309
+ | `.raw_response` | *httpx.Response* | The raw HTTP response |
310
+ | `.body` | *str* | The response content |
311
+
312
+ 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:
313
+
314
+ | Error Type | Status Code | Content Type |
315
+ | --------------------------- | ----------- | ---------------- |
316
+ | errors.UnauthenticatedError | 401 | application/json |
317
+ | errors.TooManyRequestsError | 429 | application/json |
318
+ | errors.InternalServerError | 500 | application/json |
319
+ | errors.APIError | 4XX, 5XX | \*/\* |
320
+
321
+ ### Example
322
+
323
+ ```python
324
+ from lambdadb import Lambdadb, errors, models
325
+
326
+
327
+ with Lambdadb() as l_client:
328
+ res = None
329
+ try:
330
+
331
+ res = l_client.projects.list(security=models.ListProjectsSecurity(
332
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
333
+ ))
334
+
335
+ # Handle response
336
+ print(res)
337
+
338
+ except errors.UnauthenticatedError as e:
339
+ # handle e.data: errors.UnauthenticatedErrorData
340
+ raise(e)
341
+ except errors.TooManyRequestsError as e:
342
+ # handle e.data: errors.TooManyRequestsErrorData
343
+ raise(e)
344
+ except errors.InternalServerError as e:
345
+ # handle e.data: errors.InternalServerErrorData
346
+ raise(e)
347
+ except errors.APIError as e:
348
+ # handle exception
349
+ raise(e)
350
+ ```
351
+ <!-- End Error Handling [errors] -->
352
+
353
+ <!-- Start Server Selection [server] -->
354
+ ## Server Selection
355
+
356
+ ### Override Server URL Per-Client
357
+
358
+ 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:
359
+ ```python
360
+ from lambdadb import Lambdadb, models
361
+
362
+
363
+ with Lambdadb(
364
+ server_url="https://{baseUrl}",
365
+ ) as l_client:
366
+
367
+ res = l_client.projects.list(security=models.ListProjectsSecurity(
368
+ admin_api_key="<YOUR_ADMIN_API_KEY>",
369
+ ))
370
+
371
+ # Handle response
372
+ print(res)
373
+
374
+ ```
375
+ <!-- End Server Selection [server] -->
376
+
377
+ <!-- Start Custom HTTP Client [http-client] -->
378
+ ## Custom HTTP Client
379
+
380
+ The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
381
+ Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
382
+ This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.
383
+
384
+ For example, you could specify a header for every request that this sdk makes as follows:
385
+ ```python
386
+ from lambdadb import Lambdadb
387
+ import httpx
388
+
389
+ http_client = httpx.Client(headers={"x-custom-header": "someValue"})
390
+ s = Lambdadb(client=http_client)
391
+ ```
392
+
393
+ or you could wrap the client with your own custom logic:
394
+ ```python
395
+ from lambdadb import Lambdadb
396
+ from lambdadb.httpclient import AsyncHttpClient
397
+ import httpx
398
+
399
+ class CustomClient(AsyncHttpClient):
400
+ client: AsyncHttpClient
401
+
402
+ def __init__(self, client: AsyncHttpClient):
403
+ self.client = client
404
+
405
+ async def send(
406
+ self,
407
+ request: httpx.Request,
408
+ *,
409
+ stream: bool = False,
410
+ auth: Union[
411
+ httpx._types.AuthTypes, httpx._client.UseClientDefault, None
412
+ ] = httpx.USE_CLIENT_DEFAULT,
413
+ follow_redirects: Union[
414
+ bool, httpx._client.UseClientDefault
415
+ ] = httpx.USE_CLIENT_DEFAULT,
416
+ ) -> httpx.Response:
417
+ request.headers["Client-Level-Header"] = "added by client"
418
+
419
+ return await self.client.send(
420
+ request, stream=stream, auth=auth, follow_redirects=follow_redirects
421
+ )
422
+
423
+ def build_request(
424
+ self,
425
+ method: str,
426
+ url: httpx._types.URLTypes,
427
+ *,
428
+ content: Optional[httpx._types.RequestContent] = None,
429
+ data: Optional[httpx._types.RequestData] = None,
430
+ files: Optional[httpx._types.RequestFiles] = None,
431
+ json: Optional[Any] = None,
432
+ params: Optional[httpx._types.QueryParamTypes] = None,
433
+ headers: Optional[httpx._types.HeaderTypes] = None,
434
+ cookies: Optional[httpx._types.CookieTypes] = None,
435
+ timeout: Union[
436
+ httpx._types.TimeoutTypes, httpx._client.UseClientDefault
437
+ ] = httpx.USE_CLIENT_DEFAULT,
438
+ extensions: Optional[httpx._types.RequestExtensions] = None,
439
+ ) -> httpx.Request:
440
+ return self.client.build_request(
441
+ method,
442
+ url,
443
+ content=content,
444
+ data=data,
445
+ files=files,
446
+ json=json,
447
+ params=params,
448
+ headers=headers,
449
+ cookies=cookies,
450
+ timeout=timeout,
451
+ extensions=extensions,
452
+ )
453
+
454
+ s = Lambdadb(async_client=CustomClient(httpx.AsyncClient()))
455
+ ```
456
+ <!-- End Custom HTTP Client [http-client] -->
457
+
458
+ <!-- Start Resource Management [resource-management] -->
459
+ ## Resource Management
460
+
461
+ The `Lambdadb` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.
462
+
463
+ [context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers
464
+
465
+ ```python
466
+ from lambdadb import Lambdadb
467
+ def main():
468
+
469
+ with Lambdadb() as l_client:
470
+ # Rest of application here...
471
+
472
+
473
+ # Or when using async:
474
+ async def amain():
475
+
476
+ async with Lambdadb() as l_client:
477
+ # Rest of application here...
478
+ ```
479
+ <!-- End Resource Management [resource-management] -->
480
+
481
+ <!-- Start Debugging [debug] -->
482
+ ## Debugging
483
+
484
+ You can setup your SDK to emit debug logs for SDK requests and responses.
485
+
486
+ You can pass your own logger class directly into your SDK.
487
+ ```python
488
+ from lambdadb import Lambdadb
489
+ import logging
490
+
491
+ logging.basicConfig(level=logging.DEBUG)
492
+ s = Lambdadb(debug_logger=logging.getLogger("lambdadb"))
493
+ ```
494
+
495
+ You can also enable a default debug logger by setting an environment variable `LAMBDADB_DEBUG` to true.
496
+ <!-- End Debugging [debug] -->
497
+
498
+ <!-- Placeholder for Future Speakeasy SDK Sections -->
499
+
500
+ # Development
501
+
502
+ ## Maturity
503
+
504
+ This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
505
+ to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
506
+ looking for the latest version.
507
+
508
+ ## Contributions
509
+
510
+ While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
511
+ We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
512
+
513
+ ### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=lambdadb&utm_campaign=python)
514
+
@@ -0,0 +1,66 @@
1
+ lambdadb/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
2
+ lambdadb/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
3
+ lambdadb/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
+ lambdadb/_hooks/sdkhooks.py,sha256=d-zXS-cOmLsZWMEyHqSo28OstycTLsBhOnLlFM9Mn30,2558
5
+ lambdadb/_hooks/types.py,sha256=gGORjCJNJuTcPJXpr6xwKJXQLLVOl3wUJCBktRIkQNA,2811
6
+ lambdadb/_version.py,sha256=DD0ZBIvcXt8DhL-Xr5aIWcKj7kLkRWCAQ6x4nWcHvUI,458
7
+ lambdadb/basesdk.py,sha256=vwVUZwWjE25p4_gHNEymZ9zMmnnsesUMP8MRPSj9JOg,12179
8
+ lambdadb/collections.py,sha256=weAwXmUh2dsHRdlIN_MHEmLRg3WoekGlpQat5hxnCOU,68849
9
+ lambdadb/docs.py,sha256=FWatng3gxufsufTcG_Rhb83z2Z3u-dJvE6mPKVntJAs,56898
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=OMrkUv4ZQVUAwRLQbhSUU6XA7a1pc5EVARgpsZQNyRc,15048
20
+ lambdadb/models/bulkupsertdocsop.py,sha256=r7WrCY_8uKgQr07eIBOk1U6clKPOKy6OMfsnl43Q5kA,1674
21
+ lambdadb/models/collectionresponse.py,sha256=zK3nHrb_zRKc9B6NuAtd_V1gESwD-fULqZ4SmkmVQHg,2121
22
+ lambdadb/models/createcollectionop.py,sha256=Hk-6zcL9ZWrFDPh23J805x8YwL2_3It02R2oRI9eQ6w,2198
23
+ lambdadb/models/createprojectop.py,sha256=ekgwDcoiDyfhQTO92CSBL-SwHk133AmF67J24BzJlfU,1202
24
+ lambdadb/models/deletecollectionop.py,sha256=MCNYTYXCwsIP4NQXB3CA2oZwF0HFALaIpSUBePP05KM,1171
25
+ lambdadb/models/deletedocsop.py,sha256=ybWYrAqQiOe8piMUM6msCOlLm4-2f4u7aLrHl050UZo,2131
26
+ lambdadb/models/deleteprojectop.py,sha256=9yCpgk-pjrbgYcDOQQTbixXm7CYsXAq11le5DroH2oA,1306
27
+ lambdadb/models/fetchdocsop.py,sha256=tak7MMPl4OozANBW2ORRW7OjjNztHoHwfgYtSz7-2KE,3285
28
+ lambdadb/models/getbulkupsertdocsop.py,sha256=oUkcvIkrM_wIxrCoB_X-jBL9QqA_qpo7olh24vBSdWQ,2586
29
+ lambdadb/models/getcollectionop.py,sha256=9X_4fW9sYfXVe_gPqCbnKBEr0z7ss_wNrhRdSXhNSRU,865
30
+ lambdadb/models/getprojectop.py,sha256=hxv2I92Gp8W46b599zZhLdHhGWSErJCjZgyJFwoXiEo,1006
31
+ lambdadb/models/indexconfigs_union.py,sha256=fAq_wlTU1p_mdbq_ZuCFIb_DldfvL__Tphc36ocUl0w,2020
32
+ lambdadb/models/listcollectionsop.py,sha256=Q7OM34dUCRQhft3vg4FLlnRIXWhUAhxG4rX_nIrL9_8,1081
33
+ lambdadb/models/listprojectsop.py,sha256=-ziVP7iGTlD0RDUCkRw_7sS6xMpVB4GyYJwpI6bgfLw,1031
34
+ lambdadb/models/projectresponse.py,sha256=oKimGJ8YtrOSZDeCNZWcPhVL0UO_vhO3uozcZ3kUAIw,1070
35
+ lambdadb/models/querycollectionop.py,sha256=ZS-tHGqw6gRDstMEHg7NuWdmuMInLwRIvKnrbKgMGU8,4797
36
+ lambdadb/models/security.py,sha256=nP-VTWFY6O-UPNPsWcsg38JcXr2zSy_m7qieDix6SxA,698
37
+ lambdadb/models/status.py,sha256=pl66KcDT9ao6yLXXXOBqerh_StjpNiJb34Yf7VoijEI,250
38
+ lambdadb/models/updatecollectionop.py,sha256=AH-xDQYtywu6rn5clKKXIuamXk3iYdwSfN5kCi5Ygtk,1470
39
+ lambdadb/models/updateprojectop.py,sha256=OjtkpuNpJiKbqVP2vQvoCmXlb1Oe3fTjPgJUOZWtAHc,1446
40
+ lambdadb/models/upsertdocsop.py,sha256=6oMppMfQtgyVoUrNZ6S_qWFMZmkmPBqQumGWzN78nNk,1684
41
+ lambdadb/projects.py,sha256=zhsmmWFWZXF1a2w6gwF-8KuiWKDFMFrzg5Ri1KtKl9A,51153
42
+ lambdadb/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
43
+ lambdadb/sdk.py,sha256=J845PSsw_HZJkAh--TwwUrtvfdTfY_U6JsOoElIADr0,6302
44
+ lambdadb/sdkconfiguration.py,sha256=jYPGkFFQgoXcJ5YQtxNkvOu8BsGJSmaD1jpgWUhAWzY,1746
45
+ lambdadb/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
46
+ lambdadb/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
47
+ lambdadb/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
48
+ lambdadb/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
49
+ lambdadb/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
50
+ lambdadb/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
51
+ lambdadb/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
52
+ lambdadb/utils/forms.py,sha256=YSSijXrsM2nfrRHlPQejh1uRRKfoILomHL3d9xpJiy8,6058
53
+ lambdadb/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
54
+ lambdadb/utils/logger.py,sha256=cU5AqG-IoxPayWXFZSayzLILandB50DjxgadREK-NAE,675
55
+ lambdadb/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
56
+ lambdadb/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
57
+ lambdadb/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
58
+ lambdadb/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
59
+ lambdadb/utils/security.py,sha256=Dq3M6Ee_x_uWRPZ7vvM4XQNxjCMSlphrRn6qVs1pljU,6034
60
+ lambdadb/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
61
+ lambdadb/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
62
+ lambdadb/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
63
+ lambdadb-0.1.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
64
+ lambdadb-0.1.2.dist-info/METADATA,sha256=oDjCgwrukCs-6zgKWpwzFm4VoRpcM6rh_ckdiIPWwBU,17816
65
+ lambdadb-0.1.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
66
+ lambdadb-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.1.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any