PyStellarDB 0.12.1__tar.gz → 0.13.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyStellarDB
3
- Version: 0.12.1
3
+ Version: 0.13.1
4
4
  Summary: Python interface to StellarDB
5
5
  Home-page: https://github.com/WarpCloud/PyStellarDB
6
6
  Author: Zhiping Wang
@@ -11,12 +11,24 @@ Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Operating System :: OS Independent
12
12
  Classifier: Topic :: Database :: Front-Ends
13
13
  Requires-Python: >=2.7
14
+ License-File: LICENSE
15
+ Requires-Dist: future
16
+ Requires-Dist: python-dateutil
17
+ Requires-Dist: pyhive
18
+ Requires-Dist: sasl
19
+ Requires-Dist: thrift
20
+ Requires-Dist: thrift-sasl>=0.3.0
14
21
  Provides-Extra: presto
22
+ Requires-Dist: requests>=1.0.0; extra == "presto"
15
23
  Provides-Extra: hive
24
+ Requires-Dist: sasl>=0.2.1; extra == "hive"
25
+ Requires-Dist: thrift>=0.10.0; extra == "hive"
16
26
  Provides-Extra: sqlalchemy
27
+ Requires-Dist: sqlalchemy>=1.3.0; extra == "sqlalchemy"
17
28
  Provides-Extra: kerberos
29
+ Requires-Dist: requests_kerberos>=0.12.0; extra == "kerberos"
18
30
  Provides-Extra: pyspark
19
- License-File: LICENSE
31
+ Requires-Dist: pyspark>=2.4.0; extra == "pyspark"
20
32
 
21
33
  PyStellarDB
22
34
  ===========
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyStellarDB
3
- Version: 0.12.1
3
+ Version: 0.13.1
4
4
  Summary: Python interface to StellarDB
5
5
  Home-page: https://github.com/WarpCloud/PyStellarDB
6
6
  Author: Zhiping Wang
@@ -11,12 +11,24 @@ Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Operating System :: OS Independent
12
12
  Classifier: Topic :: Database :: Front-Ends
13
13
  Requires-Python: >=2.7
14
+ License-File: LICENSE
15
+ Requires-Dist: future
16
+ Requires-Dist: python-dateutil
17
+ Requires-Dist: pyhive
18
+ Requires-Dist: sasl
19
+ Requires-Dist: thrift
20
+ Requires-Dist: thrift-sasl>=0.3.0
14
21
  Provides-Extra: presto
22
+ Requires-Dist: requests>=1.0.0; extra == "presto"
15
23
  Provides-Extra: hive
24
+ Requires-Dist: sasl>=0.2.1; extra == "hive"
25
+ Requires-Dist: thrift>=0.10.0; extra == "hive"
16
26
  Provides-Extra: sqlalchemy
27
+ Requires-Dist: sqlalchemy>=1.3.0; extra == "sqlalchemy"
17
28
  Provides-Extra: kerberos
29
+ Requires-Dist: requests_kerberos>=0.12.0; extra == "kerberos"
18
30
  Provides-Extra: pyspark
19
- License-File: LICENSE
31
+ Requires-Dist: pyspark>=2.4.0; extra == "pyspark"
20
32
 
21
33
  PyStellarDB
22
34
  ===========
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2023-10-12T11:26:36+0800",
11
+ "date": "2024-08-20T10:49:46+0800",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "3617c3979f99612a549ec6b17a54ef0ed4f70194",
15
- "version": "0.12.1"
14
+ "full-revisionid": "b83cfb5780b16466ce79235a756422bb00844b1b",
15
+ "version": "0.13.1"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
@@ -69,7 +69,7 @@ class Vertex(GraphElement):
69
69
  return m
70
70
 
71
71
  def __str__(self):
72
- return json.dumps(self.toJSON())
72
+ return json.dumps(self.toJSON(), ensure_ascii=False)
73
73
 
74
74
  @staticmethod
75
75
  def parseVertexFromJson(json_str):
@@ -187,7 +187,7 @@ class Edge(GraphElement):
187
187
  return m
188
188
 
189
189
  def __str__(self):
190
- return json.dumps(self.toJSON())
190
+ return json.dumps(self.toJSON(), ensure_ascii=False)
191
191
 
192
192
  @staticmethod
193
193
  def parseEdgeFromJson(schema, json_str):
@@ -362,7 +362,7 @@ class GraphSchema(object):
362
362
  return m
363
363
 
364
364
  def __str__(self):
365
- return json.dumps(self.toJSON())
365
+ return json.dumps(self.toJSON(), ensure_ascii=False)
366
366
 
367
367
  @staticmethod
368
368
  def parseSchemaFromJson(json_str):
@@ -2,8 +2,6 @@
2
2
 
3
3
  from setuptools import setup, find_packages
4
4
  from setuptools.command.test import test as TestCommand
5
- import pyhive
6
- import sys
7
5
  import versioneer
8
6
 
9
7
 
File without changes
File without changes
File without changes
File without changes
File without changes