gremlinpython 3.7.3__tar.gz → 3.7.4__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.
- gremlinpython-3.7.4/NOTICE +5 -0
- {gremlinpython-3.7.3/gremlinpython.egg-info → gremlinpython-3.7.4}/PKG-INFO +1 -1
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/__version__.py +2 -2
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/aiohttp/transport.py +2 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/useragent.py +1 -1
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/process/graph_traversal.py +39 -6
- {gremlinpython-3.7.3 → gremlinpython-3.7.4/gremlinpython.egg-info}/PKG-INFO +1 -1
- gremlinpython-3.7.3/NOTICE +0 -5
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/LICENSE +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/MANIFEST.in +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/README.rst +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/__init__.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/__init__.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/aiohttp/__init__.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/client.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/connection.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/driver_remote_connection.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/protocol.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/remote_connection.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/request.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/resultset.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/serializer.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/transport.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/process/__init__.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/process/anonymous_traversal.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/process/strategies.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/process/translator.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/process/traversal.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/statics.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/__init__.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/graph.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/io/__init__.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/io/graphbinaryV1.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/io/graphsonV2d0.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/io/graphsonV3d0.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/structure/io/util.py +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlinpython.egg-info/SOURCES.txt +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlinpython.egg-info/dependency_links.txt +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlinpython.egg-info/requires.txt +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlinpython.egg-info/top_level.txt +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/setup.cfg +0 -0
- {gremlinpython-3.7.3 → gremlinpython-3.7.4}/setup.py +0 -0
|
@@ -54,6 +54,8 @@ class AiohttpTransport(AbstractBaseTransport):
|
|
|
54
54
|
self._enable_compression = enable_compression
|
|
55
55
|
if "max_content_length" in self._aiohttp_kwargs:
|
|
56
56
|
self._aiohttp_kwargs["max_msg_size"] = self._aiohttp_kwargs.pop("max_content_length")
|
|
57
|
+
if "max_msg_size" not in self._aiohttp_kwargs:
|
|
58
|
+
self._aiohttp_kwargs["max_msg_size"] = 10 * 1024 * 1024
|
|
57
59
|
if "ssl_options" in self._aiohttp_kwargs:
|
|
58
60
|
self._aiohttp_kwargs["ssl"] = self._aiohttp_kwargs.pop("ssl_options")
|
|
59
61
|
if self._enable_compression and "compress" not in self._aiohttp_kwargs:
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
#
|
|
19
19
|
import platform
|
|
20
20
|
|
|
21
|
-
gremlin_version = "3.7.
|
|
21
|
+
gremlin_version = "3.7.4" # DO NOT MODIFY - Configured automatically by Maven Replacer Plugin
|
|
22
22
|
|
|
23
23
|
def _generate_user_agent():
|
|
24
24
|
application_name = "NotAvailable"
|
|
@@ -542,9 +542,16 @@ class GraphTraversal(Traversal):
|
|
|
542
542
|
"gremlin_python.process.GraphTraversalSource.hasKey will be replaced by "
|
|
543
543
|
"gremlin_python.process.GraphTraversalSource.has_key.",
|
|
544
544
|
DeprecationWarning)
|
|
545
|
-
return self.
|
|
545
|
+
return self.has_key(*args)
|
|
546
546
|
|
|
547
547
|
def has_key_(self, *args):
|
|
548
|
+
warnings.warn(
|
|
549
|
+
"gremlin_python.process.GraphTraversalSource.has_key_ will be replaced by "
|
|
550
|
+
"gremlin_python.process.GraphTraversalSource.has_key.",
|
|
551
|
+
DeprecationWarning)
|
|
552
|
+
return self.has_key(*args)
|
|
553
|
+
|
|
554
|
+
def has_key(self, *args):
|
|
548
555
|
self.bytecode.add_step("hasKey", *args)
|
|
549
556
|
return self
|
|
550
557
|
|
|
@@ -1301,11 +1308,19 @@ class __(object, metaclass=MagicType):
|
|
|
1301
1308
|
"gremlin_python.process.__.hasKey will be replaced by "
|
|
1302
1309
|
"gremlin_python.process.__.has_key.",
|
|
1303
1310
|
DeprecationWarning)
|
|
1304
|
-
return cls.
|
|
1311
|
+
return cls.has_key(*args)
|
|
1305
1312
|
|
|
1306
1313
|
@classmethod
|
|
1307
1314
|
def has_key_(cls, *args):
|
|
1308
|
-
|
|
1315
|
+
warnings.warn(
|
|
1316
|
+
"gremlin_python.process.__.has_key_ will be replaced by "
|
|
1317
|
+
"gremlin_python.process.__.has_key.",
|
|
1318
|
+
DeprecationWarning)
|
|
1319
|
+
return cls.has_key(*args)
|
|
1320
|
+
|
|
1321
|
+
@classmethod
|
|
1322
|
+
def has_key (cls, *args):
|
|
1323
|
+
return cls.graph_traversal(None, None, Bytecode()).has_key(*args)
|
|
1309
1324
|
|
|
1310
1325
|
@classmethod
|
|
1311
1326
|
def hasLabel(cls, *args):
|
|
@@ -1467,6 +1482,10 @@ class __(object, metaclass=MagicType):
|
|
|
1467
1482
|
def min_(cls, *args):
|
|
1468
1483
|
return cls.graph_traversal(None, None, Bytecode()).min_(*args)
|
|
1469
1484
|
|
|
1485
|
+
@classmethod
|
|
1486
|
+
def none(cls, *args):
|
|
1487
|
+
return cls.graph_traversal(None, None, Bytecode()).none(*args)
|
|
1488
|
+
|
|
1470
1489
|
@classmethod
|
|
1471
1490
|
def not_(cls, *args):
|
|
1472
1491
|
return cls.graph_traversal(None, None, Bytecode()).not_(*args)
|
|
@@ -1943,6 +1962,10 @@ def dedup(*args):
|
|
|
1943
1962
|
return __.dedup(*args)
|
|
1944
1963
|
|
|
1945
1964
|
|
|
1965
|
+
def disjunct(*args):
|
|
1966
|
+
return __.disjunct(*args)
|
|
1967
|
+
|
|
1968
|
+
|
|
1946
1969
|
def drop(*args):
|
|
1947
1970
|
return __.drop(*args)
|
|
1948
1971
|
|
|
@@ -2012,12 +2035,14 @@ def has_id(*args):
|
|
|
2012
2035
|
|
|
2013
2036
|
|
|
2014
2037
|
def hasKey(*args):
|
|
2015
|
-
return __.
|
|
2038
|
+
return __.has_key(*args)
|
|
2016
2039
|
|
|
2017
2040
|
|
|
2018
2041
|
def has_key_(*args):
|
|
2019
|
-
return __.
|
|
2042
|
+
return __.has_key(*args)
|
|
2020
2043
|
|
|
2044
|
+
def has_key(*args):
|
|
2045
|
+
return __.has_key(*args)
|
|
2021
2046
|
|
|
2022
2047
|
def hasLabel(*args):
|
|
2023
2048
|
return __.has_label(*args)
|
|
@@ -2147,6 +2172,10 @@ def min_(*args):
|
|
|
2147
2172
|
return __.min_(*args)
|
|
2148
2173
|
|
|
2149
2174
|
|
|
2175
|
+
def none(*args):
|
|
2176
|
+
return __.none(*args)
|
|
2177
|
+
|
|
2178
|
+
|
|
2150
2179
|
def not_(*args):
|
|
2151
2180
|
return __.not_(*args)
|
|
2152
2181
|
|
|
@@ -2435,6 +2464,8 @@ statics.add_static('date_diff', date_diff)
|
|
|
2435
2464
|
|
|
2436
2465
|
statics.add_static('dedup', dedup)
|
|
2437
2466
|
|
|
2467
|
+
statics.add_static('disjunct', disjunct)
|
|
2468
|
+
|
|
2438
2469
|
statics.add_static('drop', drop)
|
|
2439
2470
|
|
|
2440
2471
|
statics.add_static('element', element)
|
|
@@ -2471,7 +2502,7 @@ statics.add_static('has_id', has_id)
|
|
|
2471
2502
|
|
|
2472
2503
|
statics.add_static('hasKey', hasKey)
|
|
2473
2504
|
|
|
2474
|
-
statics.add_static('has_key',
|
|
2505
|
+
statics.add_static('has_key', has_key)
|
|
2475
2506
|
|
|
2476
2507
|
statics.add_static('hasLabel', hasLabel)
|
|
2477
2508
|
|
|
@@ -2535,6 +2566,8 @@ statics.add_static('merge_v', merge_v)
|
|
|
2535
2566
|
|
|
2536
2567
|
statics.add_static('min_', min_)
|
|
2537
2568
|
|
|
2569
|
+
statics.add_static('none', none)
|
|
2570
|
+
|
|
2538
2571
|
statics.add_static('not_', not_)
|
|
2539
2572
|
|
|
2540
2573
|
statics.add_static('optional', optional)
|
gremlinpython-3.7.3/NOTICE
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gremlinpython-3.7.3 → gremlinpython-3.7.4}/gremlin_python/driver/driver_remote_connection.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|