wherobots-python-dbapi 0.14.0__tar.gz → 0.15.0__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.
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/PKG-INFO +12 -3
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/README.md +11 -2
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/pyproject.toml +1 -1
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/region.py +4 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/LICENSE +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/__init__.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/connection.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/constants.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/cursor.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/driver.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/errors.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/runtime.py +0 -0
- {wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/session_type.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wherobots-python-dbapi
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0
|
|
4
4
|
Summary: Python DB-API driver for Wherobots DB
|
|
5
5
|
License: Apache 2.0
|
|
6
6
|
Author: Maxime Petazzoni
|
|
@@ -90,8 +90,17 @@ parameter, passing in one of the `Runtime` enum values. For more
|
|
|
90
90
|
information on runtime sizing and selection, please consult the
|
|
91
91
|
[Wherobots product documentation](https://docs.wherobots.com).
|
|
92
92
|
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
You must also specify in which region your SQL session should execute
|
|
94
|
+
into. Wherobots Cloud supports the following compute regions:
|
|
95
|
+
|
|
96
|
+
* `aws-us-east-1`: AWS US East 1 (N. Virginia)
|
|
97
|
+
* `aws-us-west-2`: AWS US West 2 (Oregon)
|
|
98
|
+
* `aws-eu-west-1`: AWS EU West 1 (Ireland)
|
|
99
|
+
|
|
100
|
+
> [!IMPORTANT]
|
|
101
|
+
> The `aws-us-west-2` region is available to all Wherobots Cloud users
|
|
102
|
+
> and customers; other regions are currently reserved to Professional
|
|
103
|
+
> Edition customers.
|
|
95
104
|
|
|
96
105
|
### Advanced parameters
|
|
97
106
|
|
|
@@ -62,8 +62,17 @@ parameter, passing in one of the `Runtime` enum values. For more
|
|
|
62
62
|
information on runtime sizing and selection, please consult the
|
|
63
63
|
[Wherobots product documentation](https://docs.wherobots.com).
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
You must also specify in which region your SQL session should execute
|
|
66
|
+
into. Wherobots Cloud supports the following compute regions:
|
|
67
|
+
|
|
68
|
+
* `aws-us-east-1`: AWS US East 1 (N. Virginia)
|
|
69
|
+
* `aws-us-west-2`: AWS US West 2 (Oregon)
|
|
70
|
+
* `aws-eu-west-1`: AWS EU West 1 (Ireland)
|
|
71
|
+
|
|
72
|
+
> [!IMPORTANT]
|
|
73
|
+
> The `aws-us-west-2` region is available to all Wherobots Cloud users
|
|
74
|
+
> and customers; other regions are currently reserved to Professional
|
|
75
|
+
> Edition customers.
|
|
67
76
|
|
|
68
77
|
### Advanced parameters
|
|
69
78
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wherobots_python_dbapi-0.14.0 → wherobots_python_dbapi-0.15.0}/wherobots/db/session_type.py
RENAMED
|
File without changes
|