dataproc-spark-connect 0.2.0__py2.py3-none-any.whl → 0.2.1__py2.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dataproc-spark-connect
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Dataproc client library for Spark Connect
5
5
  Home-page: https://github.com/GoogleCloudDataproc/dataproc-spark-connect-python
6
6
  Author: Google LLC
@@ -16,6 +16,11 @@ Requires-Dist: pyarrow
16
16
 
17
17
  # Dataproc Spark Connect Client
18
18
 
19
+ > ⚠️ **Warning:**
20
+ The package `dataproc-spark-connect` has been renamed to `google-spark-connect`. `dataproc-spark-connect` will no longer be updated.
21
+ For help using `google-spark-connect`, please see [guide](https://github.com/GoogleCloudDataproc/dataproc-spark-connect-python/blob/main/README.md).
22
+
23
+
19
24
  A wrapper of the Apache [Spark Connect](https://spark.apache.org/spark-connect/) client with
20
25
  additional functionalities that allow applications to communicate with a remote Dataproc
21
26
  Spark cluster using the Spark Connect protocol without requiring additional steps.
@@ -1,10 +1,10 @@
1
- google/cloud/dataproc_spark_connect/__init__.py,sha256=pybAofW6rmWI-4C8VYm1q0NOZD_sBvFQz43jUBSQW30,616
1
+ google/cloud/dataproc_spark_connect/__init__.py,sha256=G5Gy26z7Z2u_7EUSYGfcBArKLNTWlSG5OmzuCYzcwjA,969
2
2
  google/cloud/dataproc_spark_connect/session.py,sha256=A42Wo87VSunG0D3sB-biWyNvU33WhI92mmrJbXI1oNo,23017
3
3
  google/cloud/dataproc_spark_connect/client/__init__.py,sha256=6hCNSsgYlie6GuVpc5gjFsPnyeMTScTpXSPYqp1fplY,615
4
4
  google/cloud/dataproc_spark_connect/client/core.py,sha256=7Wy6QwkcWxlHBdo4NsktJEknggPpGkx9F5CS5IpQ7iM,3630
5
5
  google/cloud/dataproc_spark_connect/client/proxy.py,sha256=ScrbaGsEvqi8wp4ngfD-T9K9mFHXBkVMZkTSr7mdNBs,8926
6
- dataproc_spark_connect-0.2.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
7
- dataproc_spark_connect-0.2.0.dist-info/METADATA,sha256=UivMTIfzkp6fzGHG4hiXPUAsRP9P7VBQMKJdEcjmowk,4200
8
- dataproc_spark_connect-0.2.0.dist-info/WHEEL,sha256=OpXWERl2xLPRHTvd2ZXo_iluPEQd8uSbYkJ53NAER_Y,109
9
- dataproc_spark_connect-0.2.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
10
- dataproc_spark_connect-0.2.0.dist-info/RECORD,,
6
+ dataproc_spark_connect-0.2.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
7
+ dataproc_spark_connect-0.2.1.dist-info/METADATA,sha256=S4BrILUItFH_SFQ7fciFargIF5HQsSck4VF8zqFOGN4,4509
8
+ dataproc_spark_connect-0.2.1.dist-info/WHEEL,sha256=OpXWERl2xLPRHTvd2ZXo_iluPEQd8uSbYkJ53NAER_Y,109
9
+ dataproc_spark_connect-0.2.1.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7
10
+ dataproc_spark_connect-0.2.1.dist-info/RECORD,,
@@ -12,3 +12,12 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
  from .session import DataprocSparkSession
15
+ import warnings
16
+
17
+ warnings.warn(
18
+ "The package 'dataproc-spark-connect' has been renamed to 'google-spark-connect'. "
19
+ "'dataproc-spark-connect' will no longer be updated. "
20
+ "For help using 'google-spark-connect', "
21
+ "see https://github.com/GoogleCloudDataproc/dataproc-spark-connect-python/blob/main/README.md. ",
22
+ DeprecationWarning,
23
+ )