lambdadb 0.1.2__tar.gz → 0.1.3__tar.gz

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 (67) hide show
  1. {lambdadb-0.1.2 → lambdadb-0.1.3}/PKG-INFO +7 -19
  2. {lambdadb-0.1.2 → lambdadb-0.1.3}/README-PYPI.md +6 -17
  3. {lambdadb-0.1.2 → lambdadb-0.1.3}/pyproject.toml +1 -1
  4. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/_version.py +2 -2
  5. {lambdadb-0.1.2 → lambdadb-0.1.3}/LICENSE +0 -0
  6. {lambdadb-0.1.2 → lambdadb-0.1.3}/py.typed +0 -0
  7. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/__init__.py +0 -0
  8. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/_hooks/__init__.py +0 -0
  9. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/_hooks/registration.py +0 -0
  10. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/_hooks/sdkhooks.py +0 -0
  11. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/_hooks/types.py +0 -0
  12. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/basesdk.py +0 -0
  13. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/collections.py +0 -0
  14. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/docs.py +0 -0
  15. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/__init__.py +0 -0
  16. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/apierror.py +0 -0
  17. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/badrequest_error.py +0 -0
  18. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/internalservererror.py +0 -0
  19. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/resourcealreadyexists_error.py +0 -0
  20. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/resourcenotfound_error.py +0 -0
  21. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/toomanyrequests_error.py +0 -0
  22. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/errors/unauthenticated_error.py +0 -0
  23. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/httpclient.py +0 -0
  24. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/__init__.py +0 -0
  25. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/bulkupsertdocsop.py +0 -0
  26. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/collectionresponse.py +0 -0
  27. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/createcollectionop.py +0 -0
  28. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/createprojectop.py +0 -0
  29. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/deletecollectionop.py +0 -0
  30. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/deletedocsop.py +0 -0
  31. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/deleteprojectop.py +0 -0
  32. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/fetchdocsop.py +0 -0
  33. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/getbulkupsertdocsop.py +0 -0
  34. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/getcollectionop.py +0 -0
  35. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/getprojectop.py +0 -0
  36. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/indexconfigs_union.py +0 -0
  37. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/listcollectionsop.py +0 -0
  38. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/listprojectsop.py +0 -0
  39. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/projectresponse.py +0 -0
  40. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/querycollectionop.py +0 -0
  41. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/security.py +0 -0
  42. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/status.py +0 -0
  43. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/updatecollectionop.py +0 -0
  44. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/updateprojectop.py +0 -0
  45. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/models/upsertdocsop.py +0 -0
  46. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/projects.py +0 -0
  47. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/py.typed +0 -0
  48. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/sdk.py +0 -0
  49. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/sdkconfiguration.py +0 -0
  50. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/types/__init__.py +0 -0
  51. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/types/basemodel.py +0 -0
  52. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/__init__.py +0 -0
  53. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/annotations.py +0 -0
  54. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/datetimes.py +0 -0
  55. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/enums.py +0 -0
  56. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/eventstreaming.py +0 -0
  57. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/forms.py +0 -0
  58. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/headers.py +0 -0
  59. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/logger.py +0 -0
  60. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/metadata.py +0 -0
  61. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/queryparams.py +0 -0
  62. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/requestbodies.py +0 -0
  63. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/retries.py +0 -0
  64. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/security.py +0 -0
  65. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/serializers.py +0 -0
  66. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/url.py +0 -0
  67. {lambdadb-0.1.2 → lambdadb-0.1.3}/src/lambdadb/utils/values.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lambdadb
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9.2
@@ -13,9 +13,9 @@ Requires-Dist: httpx (>=0.28.1)
13
13
  Requires-Dist: pydantic (>=2.11.2)
14
14
  Description-Content-Type: text/markdown
15
15
 
16
- # lambdadb
16
+ # LambdaDB Python SDK
17
17
 
18
- Developer-friendly & type-safe Python SDK specifically catered to leverage *lambdadb* API.
18
+ Developer-friendly & type-safe Python SDK specifically catered to leverage *LambdaDB* API.
19
19
 
20
20
  <div align="left">
21
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>
@@ -24,11 +24,6 @@ Developer-friendly & type-safe Python SDK specifically catered to leverage *lamb
24
24
  </a>
25
25
  </div>
26
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
27
  <!-- Start Summary [summary] -->
33
28
  ## Summary
34
29
 
@@ -38,7 +33,7 @@ LambdaDB API: LambdaDB Open API Spec
38
33
  <!-- Start Table of Contents [toc] -->
39
34
  ## Table of Contents
40
35
  <!-- $toc-max-depth=2 -->
41
- * [lambdadb](#lambdadb)
36
+ * [LambdaDB Python SDK](#lambdadb-python-sdk)
42
37
  * [SDK Installation](#sdk-installation)
43
38
  * [IDE Support](#ide-support)
44
39
  * [SDK Example Usage](#sdk-example-usage)
@@ -59,10 +54,6 @@ LambdaDB API: LambdaDB Open API Spec
59
54
  <!-- Start SDK Installation [installation] -->
60
55
  ## SDK Installation
61
56
 
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
57
  > [!NOTE]
67
58
  > **Python version upgrade policy**
68
59
  >
@@ -75,7 +66,7 @@ The SDK can be installed with either *pip* or *poetry* package managers.
75
66
  *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
76
67
 
77
68
  ```bash
78
- pip install git+<UNSET>.git
69
+ pip install lambdadb
79
70
  ```
80
71
 
81
72
  ### Poetry
@@ -83,7 +74,7 @@ pip install git+<UNSET>.git
83
74
  *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
75
 
85
76
  ```bash
86
- poetry add git+<UNSET>.git
77
+ poetry add lambdadb
87
78
  ```
88
79
 
89
80
  ### Shell and script usage with `uv`
@@ -508,7 +499,4 @@ looking for the latest version.
508
499
  ## Contributions
509
500
 
510
501
  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
-
502
+ 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.
@@ -1,6 +1,6 @@
1
- # lambdadb
1
+ # LambdaDB Python SDK
2
2
 
3
- Developer-friendly & type-safe Python SDK specifically catered to leverage *lambdadb* API.
3
+ Developer-friendly & type-safe Python SDK specifically catered to leverage *LambdaDB* API.
4
4
 
5
5
  <div align="left">
6
6
  <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>
@@ -9,11 +9,6 @@ Developer-friendly & type-safe Python SDK specifically catered to leverage *lamb
9
9
  </a>
10
10
  </div>
11
11
 
12
-
13
- <br /><br />
14
- > [!IMPORTANT]
15
- > 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.
16
-
17
12
  <!-- Start Summary [summary] -->
18
13
  ## Summary
19
14
 
@@ -23,7 +18,7 @@ LambdaDB API: LambdaDB Open API Spec
23
18
  <!-- Start Table of Contents [toc] -->
24
19
  ## Table of Contents
25
20
  <!-- $toc-max-depth=2 -->
26
- * [lambdadb](#lambdadb)
21
+ * [LambdaDB Python SDK](#lambdadb-python-sdk)
27
22
  * [SDK Installation](#sdk-installation)
28
23
  * [IDE Support](#ide-support)
29
24
  * [SDK Example Usage](#sdk-example-usage)
@@ -44,10 +39,6 @@ LambdaDB API: LambdaDB Open API Spec
44
39
  <!-- Start SDK Installation [installation] -->
45
40
  ## SDK Installation
46
41
 
47
- > [!TIP]
48
- > 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).
49
-
50
-
51
42
  > [!NOTE]
52
43
  > **Python version upgrade policy**
53
44
  >
@@ -60,7 +51,7 @@ The SDK can be installed with either *pip* or *poetry* package managers.
60
51
  *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.
61
52
 
62
53
  ```bash
63
- pip install git+<UNSET>.git
54
+ pip install lambdadb
64
55
  ```
65
56
 
66
57
  ### Poetry
@@ -68,7 +59,7 @@ pip install git+<UNSET>.git
68
59
  *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.
69
60
 
70
61
  ```bash
71
- poetry add git+<UNSET>.git
62
+ poetry add lambdadb
72
63
  ```
73
64
 
74
65
  ### Shell and script usage with `uv`
@@ -493,6 +484,4 @@ looking for the latest version.
493
484
  ## Contributions
494
485
 
495
486
  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.
496
- 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.
497
-
498
- ### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=lambdadb&utm_campaign=python)
487
+ 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.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "lambdadb"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "Python Client SDK Generated by Speakeasy."
5
5
  authors = [{ name = "Speakeasy" },]
6
6
  readme = "README-PYPI.md"
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "lambdadb"
6
- __version__: str = "0.1.2"
6
+ __version__: str = "0.1.3"
7
7
  __openapi_doc_version__: str = "1.0.0"
8
8
  __gen_version__: str = "2.610.0"
9
- __user_agent__: str = "speakeasy-sdk/python 0.1.2 2.610.0 1.0.0 lambdadb"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.1.3 2.610.0 1.0.0 lambdadb"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
File without changes
File without changes
File without changes
File without changes
File without changes