gremlinpython 3.8.0__py3-none-any.whl → 3.8.2__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.
Files changed (37) hide show
  1. gremlin_python/__init__.py +2 -2
  2. gremlin_python/driver/__init__.py +1 -1
  3. gremlin_python/driver/aiohttp/__init__.py +1 -1
  4. gremlin_python/driver/aiohttp/transport.py +1 -1
  5. gremlin_python/driver/client.py +1 -1
  6. gremlin_python/driver/connection.py +1 -1
  7. gremlin_python/driver/driver_remote_connection.py +1 -1
  8. gremlin_python/driver/protocol.py +1 -1
  9. gremlin_python/driver/remote_connection.py +1 -1
  10. gremlin_python/driver/request.py +1 -1
  11. gremlin_python/driver/resultset.py +1 -1
  12. gremlin_python/driver/serializer.py +1 -1
  13. gremlin_python/driver/transport.py +3 -3
  14. gremlin_python/driver/useragent.py +2 -2
  15. gremlin_python/process/__init__.py +1 -1
  16. gremlin_python/process/anonymous_traversal.py +1 -1
  17. gremlin_python/process/graph_traversal.py +1 -1
  18. gremlin_python/process/strategies.py +8 -1
  19. gremlin_python/process/translator.py +1 -1
  20. gremlin_python/process/traversal.py +2 -2
  21. gremlin_python/statics.py +1 -1
  22. gremlin_python/structure/__init__.py +3 -3
  23. gremlin_python/structure/graph.py +15 -3
  24. gremlin_python/structure/io/__init__.py +3 -3
  25. gremlin_python/structure/io/graphbinaryV1.py +27 -15
  26. gremlin_python/structure/io/graphsonV2d0.py +3 -3
  27. gremlin_python/structure/io/graphsonV3d0.py +13 -4
  28. gremlin_python/structure/io/util.py +1 -1
  29. {gremlinpython-3.8.0.dist-info → gremlinpython-3.8.2.dist-info}/METADATA +7 -2
  30. gremlinpython-3.8.2.dist-info/RECORD +34 -0
  31. {gremlinpython-3.8.0.dist-info → gremlinpython-3.8.2.dist-info}/WHEEL +1 -1
  32. gremlinpython-3.8.2.dist-info/licenses/NOTICE +5 -0
  33. gremlin_python/__version__.py +0 -20
  34. gremlinpython-3.8.0.dist-info/RECORD +0 -35
  35. gremlinpython-3.8.0.dist-info/licenses/NOTICE +0 -5
  36. {gremlinpython-3.8.0.dist-info → gremlinpython-3.8.2.dist-info}/licenses/LICENSE +0 -0
  37. {gremlinpython-3.8.0.dist-info → gremlinpython-3.8.2.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -18,4 +18,4 @@
18
18
  #
19
19
 
20
20
  __author__ = 'Marko A. Rodriguez (http://markorodriguez.com)'
21
- __version__ = '3.8.0'
21
+ __version__ = '3.8.2' # Do not touch, updated automatically from maven
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -6,7 +6,7 @@
6
6
  # "License"); you may not use this file except in compliance
7
7
  # with the License. You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -6,9 +6,9 @@
6
6
  # to you under the Apache License, Version 2.0 (the
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
14
14
  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -18,7 +18,7 @@
18
18
  #
19
19
  import platform
20
20
 
21
- gremlin_version = "3.8.0" # DO NOT MODIFY - Configured automatically by Maven Replacer Plugin
21
+ gremlin_version = "3.8.2" # DO NOT MODIFY - Configured automatically by Maven Replacer Plugin
22
22
 
23
23
  def _generate_user_agent():
24
24
  application_name = "NotAvailable"
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -20,6 +20,7 @@
20
20
  __author__ = 'Marko A. Rodriguez (http://markorodriguez.com)'
21
21
 
22
22
  from .traversal import TraversalStrategy
23
+ import warnings
23
24
 
24
25
  base_namespace = 'org.apache.tinkerpop.gremlin.process.traversal.strategy.'
25
26
  decoration_namespace = base_namespace + 'decoration.'
@@ -201,7 +202,13 @@ class PathRetractionStrategy(TraversalStrategy):
201
202
 
202
203
  class ProductiveByStrategy(TraversalStrategy):
203
204
  def __init__(self, productiveKeys=None):
205
+ warnings.warn(
206
+ "ProductiveByStrategy is deprecated as of 3.7.7, not replaced. It was added as a temporary way to "
207
+ "mimic pre-3.5.0 null processing behavior.",
208
+ DeprecationWarning)
204
209
  TraversalStrategy.__init__(self, fqcn=optimization_namespace + 'ProductiveByStrategy')
210
+ if productiveKeys is not None:
211
+ self.configuration["productiveKeys"] = productiveKeys
205
212
 
206
213
 
207
214
  class CountStrategy(TraversalStrategy):
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -700,7 +700,7 @@ class PeerPressure(object):
700
700
 
701
701
  propertyName = "~tinkerpop.peerPressure.propertyName"
702
702
 
703
- property_name = "~tinkerpop.pageRank.propertyName"
703
+ property_name = "~tinkerpop.peerPressure.propertyName"
704
704
 
705
705
  times = "~tinkerpop.peerPressure.times"
706
706
 
gremlin_python/statics.py CHANGED
@@ -7,7 +7,7 @@
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
9
  #
10
- # http://www.apache.org/licenses/LICENSE-2.0
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
11
  #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
@@ -6,9 +6,9 @@
6
6
  # to you under the Apache License, Version 2.0 (the
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
14
14
  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -6,9 +6,9 @@
6
6
  # to you under the Apache License, Version 2.0 (the
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
14
14
  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -42,6 +42,18 @@ class Element(object):
42
42
  def __hash__(self):
43
43
  return hash(self.id)
44
44
 
45
+ def property_map(self):
46
+ """Groups this element's properties by key.
47
+
48
+ Returns a dict of property key -> list of property objects (an empty
49
+ dict when this element has no properties). ``self.properties`` is a
50
+ flat list where each item exposes ``.key``.
51
+ """
52
+ result = {}
53
+ for p in self.properties:
54
+ result.setdefault(p.key, []).append(p)
55
+ return result
56
+
45
57
 
46
58
  class Vertex(Element):
47
59
  def __init__(self, id, label="vertex", properties=None):
@@ -6,9 +6,9 @@
6
6
  # to you under the Apache License, Version 2.0 (the
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
14
14
  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -7,7 +7,7 @@ to you under the Apache License, Version 2.0 (the
7
7
  "License"); you may not use this file except in compliance
8
8
  with the License. You may obtain a copy of the License at
9
9
 
10
- http://www.apache.org/licenses/LICENSE-2.0
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
11
 
12
12
  Unless required by applicable law or agreed to in writing,
13
13
  software distributed under the License is distributed on an
@@ -119,6 +119,9 @@ class DataType(Enum):
119
119
 
120
120
  NULL_BYTES = [DataType.null.value, 0x01]
121
121
 
122
+ # null type code as a plain int, so the per-read null check skips the aenum lookup
123
+ _NULL = DataType.null.value
124
+
122
125
 
123
126
  def _make_packer(format_string):
124
127
  packer = struct.Struct(format_string)
@@ -188,6 +191,9 @@ class GraphBinaryReader(object):
188
191
  self.deserializers = _deserializers.copy()
189
192
  if deserializer_map:
190
193
  self.deserializers.update(deserializer_map)
194
+ # Mirror of self.deserializers keyed by int type code instead of DataType.
195
+ # Avoids the per-read DataType(bt) call, whose aenum construction negatively affects performance on large results.
196
+ self._deserializer_by_type_code = {dt.value: des.objectify for dt, des in self.deserializers.items()}
191
197
 
192
198
  def read_object(self, b):
193
199
  if isinstance(b, bytearray):
@@ -198,11 +204,15 @@ class GraphBinaryReader(object):
198
204
  def to_object(self, buff, data_type=None, nullable=True):
199
205
  if data_type is None:
200
206
  bt = uint8_unpack(buff.read(1))
201
- if bt == DataType.null.value:
207
+ if bt == _NULL:
202
208
  if nullable:
203
209
  buff.read(1)
204
210
  return None
205
- return self.deserializers[DataType(bt)].objectify(buff, self, nullable)
211
+ try:
212
+ objectify = self._deserializer_by_type_code[bt]
213
+ except KeyError:
214
+ raise ValueError("%r is not a valid DataType" % bt) from None
215
+ return objectify(buff, self, nullable)
206
216
  else:
207
217
  return self.deserializers[data_type].objectify(buff, self, nullable)
208
218
 
@@ -291,17 +301,13 @@ class BigIntIO(_GraphBinaryTypeIO):
291
301
 
292
302
  @classmethod
293
303
  def write_bigint(cls, obj, to_extend):
294
- length = (obj.bit_length() + 7) // 8
295
- if obj > 0:
296
- b = obj.to_bytes(length, byteorder='big')
297
- to_extend.extend(int32_pack(length + 1))
298
- to_extend.extend(int8_pack(0))
299
- to_extend.extend(b)
300
- else:
301
- # handle negative
302
- b = obj.to_bytes(length, byteorder='big', signed=True)
303
- to_extend.extend(int32_pack(length))
304
- to_extend.extend(b)
304
+ # Compute the minimal signed two's-complement byte length, matching the
305
+ # Java reference serializer (BigInteger.toByteArray()).
306
+ bit_length = obj.bit_length() if obj >= 0 else (obj + 1).bit_length()
307
+ length = bit_length // 8 + 1
308
+ b = obj.to_bytes(length, byteorder='big', signed=True)
309
+ to_extend.extend(int32_pack(length))
310
+ to_extend.extend(b)
305
311
  return to_extend
306
312
 
307
313
  @classmethod
@@ -559,7 +565,13 @@ class SetDeserializer(ListIO):
559
565
 
560
566
  @classmethod
561
567
  def objectify(cls, buff, reader, nullable=True):
562
- return set(ListIO.objectify(buff, reader, nullable))
568
+ the_list = ListIO.objectify(buff, reader, nullable)
569
+ try:
570
+ return set(the_list)
571
+ except TypeError:
572
+ log.warning("Coercing Set to list as it contains unhashable elements (e.g. dict, list). "
573
+ "See TINKERPOP-3232 for more details.")
574
+ return the_list
563
575
 
564
576
 
565
577
  class MapIO(_GraphBinaryTypeIO):
@@ -6,9 +6,9 @@
6
6
  # to you under the Apache License, Version 2.0 (the
7
7
  # "License"); you may not use this file except in compliance
8
8
  # with the License. You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
12
  # Unless required by applicable law or agreed to in writing,
13
13
  # software distributed under the License is distributed on an
14
14
  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -5,9 +5,9 @@
5
5
  # to you under the Apache License, Version 2.0 (the
6
6
  # "License"); you may not use this file except in compliance
7
7
  # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
13
13
  # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
@@ -458,9 +458,18 @@ class SetIO(_GraphSONTypeIO):
458
458
  In case Java returns numeric values of different types which
459
459
  python don't recognize, coerce and return a list.
460
460
  See comments of TINKERPOP-1844 for more details
461
+
462
+ In case the set contains non-hashable elements (e.g. dict, list),
463
+ coerce and return a list.
464
+ See TINKERPOP-3232 for more details
461
465
  """
462
466
  new_list = [reader.to_object(obj) for obj in s]
463
- new_set = set(new_list)
467
+ try:
468
+ new_set = set(new_list)
469
+ except TypeError:
470
+ log.warning("Coercing g:Set to list as it contains unhashable elements (e.g. dict, list). "
471
+ "See TINKERPOP-3232 for more details.")
472
+ return new_list
464
473
  if len(new_list) != len(new_set):
465
474
  log.warning("Coercing g:Set to list due to java numeric values. "
466
475
  "See TINKERPOP-1844 for more details.")
@@ -6,7 +6,7 @@
6
6
  # "License"); you may not use this file except in compliance
7
7
  # with the License. You may obtain a copy of the License at
8
8
  #
9
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
10
  #
11
11
  # Unless required by applicable law or agreed to in writing,
12
12
  # software distributed under the License is distributed on an
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gremlinpython
3
- Version: 3.8.0
3
+ Version: 3.8.2
4
4
  Summary: Gremlin-Python for Apache TinkerPop
5
5
  Maintainer-email: Apache TinkerPop <dev@tinkerpop.apache.org>
6
6
  License: Apache 2
@@ -9,7 +9,11 @@ Classifier: Intended Audience :: Developers
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
10
  Classifier: Natural Language :: English
11
11
  Classifier: Programming Language :: Python :: 3
12
- Requires-Python: >=3.10
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Python: <3.14,>=3.10
13
17
  Description-Content-Type: text/x-rst
14
18
  License-File: LICENSE
15
19
  License-File: NOTICE
@@ -25,6 +29,7 @@ Requires-Dist: ujson>=2.0.0; extra == "ujson"
25
29
  Provides-Extra: test
26
30
  Requires-Dist: pytest<8.0.0,>=6.2.5; extra == "test"
27
31
  Requires-Dist: radish-bdd==0.18.2; extra == "test"
32
+ Requires-Dist: lxml==5.3.0; extra == "test"
28
33
  Requires-Dist: PyHamcrest<3.0.0,>=1.9.0; extra == "test"
29
34
  Requires-Dist: PyYAML>=5.3; extra == "test"
30
35
  Dynamic: license-file
@@ -0,0 +1,34 @@
1
+ gremlin_python/__init__.py,sha256=BteX8xtjC0qok_yaQiM70J1kWVIyFw9iguvVyXaMsxs,923
2
+ gremlin_python/statics.py,sha256=s7C4ltTUmYIbsbWVXlRfURvjd8oUvK2BmdHHrT5Lcsk,4375
3
+ gremlin_python/driver/__init__.py,sha256=g6RXUex0JTxx26nFwkID-1pxZN8qw-08ddWjeHrLd0Y,852
4
+ gremlin_python/driver/client.py,sha256=ixkA39vPa_EoengLugi_Q3GzdVvHr5IrWVt0iMmNdx0,8168
5
+ gremlin_python/driver/connection.py,sha256=BWNtvsMrmW2jqRkVyCKkbJq8Jqsw_Ew1LrDHy9g-Io0,3859
6
+ gremlin_python/driver/driver_remote_connection.py,sha256=psXbvXGbEYDI6zw8KN94c7MK5MYZ4sE8NR_FPGpgYU0,8854
7
+ gremlin_python/driver/protocol.py,sha256=FpakC4-p0drTvSGWKSvUvoaCMZGcDRgJKkSJyq9SDeo,11787
8
+ gremlin_python/driver/remote_connection.py,sha256=f2Q3KVB9DjOHJaIfGzXDbNZIUxNrLo76BT5ysgL6hv0,3016
9
+ gremlin_python/driver/request.py,sha256=HUbqYw_afRFPaajvqY7OiFB2aAk2a8TNh-zoMCIwK_s,955
10
+ gremlin_python/driver/resultset.py,sha256=shH7PA-iVyp8mdr1pxDAv12HDtPSoUZSI3seQEGLpjw,2671
11
+ gremlin_python/driver/serializer.py,sha256=uixt_x7pKNmcff_VVDE0S_AatM_SZ8Ppyt073EHXWmM,10246
12
+ gremlin_python/driver/transport.py,sha256=EMQEbMl4rQrrC5uja4hWfnjtu8nPUBcCMtNHQTXu3Z4,1246
13
+ gremlin_python/driver/useragent.py,sha256=BNkSzcLrRKRikrDFoiEeOqW7rbhf3Q_4H6nejw8GtEY,1590
14
+ gremlin_python/driver/aiohttp/__init__.py,sha256=Mnk4pWa5nTIrU_VYGdGJYftxPjA9MRZjFVYtvbDjH18,789
15
+ gremlin_python/driver/aiohttp/transport.py,sha256=ctUX_7wr-RhkIh1MUR57XI8XU3J6y6Q98WYXuRrU93E,11394
16
+ gremlin_python/process/__init__.py,sha256=g6RXUex0JTxx26nFwkID-1pxZN8qw-08ddWjeHrLd0Y,852
17
+ gremlin_python/process/anonymous_traversal.py,sha256=VKJGNXxJ7nE8NShZLE3Cq7u35yB6KLwfatQSxnaNRVQ,2344
18
+ gremlin_python/process/graph_traversal.py,sha256=iniz3txwmp7L_7NXGn_cqid-qIosJzMOiQmhFXUNUOY,71265
19
+ gremlin_python/process/strategies.py,sha256=UiH8Oj_OH_QjJwVE7F0D9l5bkexwKpTDLg7n68tHLvo,11182
20
+ gremlin_python/process/translator.py,sha256=4lJzowPkKNCAqzNPWosErU9UuGzzt2d3T-1iGnLUAbw,11149
21
+ gremlin_python/process/traversal.py,sha256=LTmNb35t7v0UKY5x2hTN8b_hoUdeKaKJX0LJT0hdHn8,24673
22
+ gremlin_python/structure/__init__.py,sha256=g6RXUex0JTxx26nFwkID-1pxZN8qw-08ddWjeHrLd0Y,852
23
+ gremlin_python/structure/graph.py,sha256=sHBCKg7rq8lNtSEThX8sooDr7kxMhprpWZ_aB42KkBU,4367
24
+ gremlin_python/structure/io/__init__.py,sha256=g6RXUex0JTxx26nFwkID-1pxZN8qw-08ddWjeHrLd0Y,852
25
+ gremlin_python/structure/io/graphbinaryV1.py,sha256=eYAW3whdjxnx0nqmN6TBZy1efamIS3K5utJCDPoxnEI,40229
26
+ gremlin_python/structure/io/graphsonV2d0.py,sha256=3RptqKJkvAlGoLjaBBT9pQfWSKdGhzBcYWIlz3yLyfU,22350
27
+ gremlin_python/structure/io/graphsonV3d0.py,sha256=-wOTh5EIl3Hb6ggc9vbS5ultHwopBZtkPD3djy4WJts,25886
28
+ gremlin_python/structure/io/util.py,sha256=OX4wQrpkRZkQfWkmopRLQ3ng-fPeJPIhB2MfvSBEr1s,1848
29
+ gremlinpython-3.8.2.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
30
+ gremlinpython-3.8.2.dist-info/licenses/NOTICE,sha256=FMjmoj_l2-AVGy2DCS85d0V5rk2A9R9ODI1qiWMJ0-Q,170
31
+ gremlinpython-3.8.2.dist-info/METADATA,sha256=MoP4UgjKpNSPRYg0iSPtr_K9PnamxTlg0b84keKAcT0,6922
32
+ gremlinpython-3.8.2.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
33
+ gremlinpython-3.8.2.dist-info/top_level.txt,sha256=VVeR1g-oOCZBmKIaVzZ7fF2BYrnqOWpw7C2H71ksTAU,15
34
+ gremlinpython-3.8.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (84.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,5 @@
1
+ Apache TinkerPop
2
+ Copyright 2015-2026 The Apache Software Foundation.
3
+
4
+ This product includes software developed at
5
+ The Apache Software Foundation (http://www.apache.org/).
@@ -1,20 +0,0 @@
1
- '''
2
- Licensed to the Apache Software Foundation (ASF) under one
3
- or more contributor license agreements. See the NOTICE file
4
- distributed with this work for additional information
5
- regarding copyright ownership. The ASF licenses this file
6
- to you under the Apache License, Version 2.0 (the
7
- "License"); you may not use this file except in compliance
8
- with the License. You may obtain a copy of the License at
9
-
10
- http://www.apache.org/licenses/LICENSE-2.0
11
-
12
- Unless required by applicable law or agreed to in writing,
13
- software distributed under the License is distributed on an
14
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
- KIND, either express or implied. See the License for the
16
- specific language governing permissions and limitations
17
- under the License.
18
- '''
19
- version = '?'
20
- timestamp = 1739570012
@@ -1,35 +0,0 @@
1
- gremlin_python/__init__.py,sha256=Tolc7jgq9nkO2u7ozNKwZaS8vzZDF99mW-f7kD_uIeg,872
2
- gremlin_python/__version__.py,sha256=cFRWHaN11XhVO1_PgXXCMHBfI0KeXc0i6qEp-HMDZro,800
3
- gremlin_python/statics.py,sha256=BQcVWNJzPcCX-4cqrA8-UicPxSEormCASWry32jiQUg,4373
4
- gremlin_python/driver/__init__.py,sha256=rbOOdo_19nz_mHTXVc5p8ZXLI5pUGMfXLKQiw7Olu7g,850
5
- gremlin_python/driver/client.py,sha256=s-6cV2C0EMpvmyZZXWTq8kiFZEFLdn_HmWMF05mrSzU,8166
6
- gremlin_python/driver/connection.py,sha256=9Jia02-47hzX7ElMhMWBCKrrvOm1eUnmOOnl_S730PE,3857
7
- gremlin_python/driver/driver_remote_connection.py,sha256=8htMF-TYd0FJDQciL_nzTsVbzkgWO8lCBivx6qv2LU8,8852
8
- gremlin_python/driver/protocol.py,sha256=SqDZWeu3p2WHCzv8k1u2Q1icg2AIl03OhkWsB4KoBnw,11785
9
- gremlin_python/driver/remote_connection.py,sha256=DtglObhiyLDIgLKIcv7enDuXd9KiCJVLXWAvreBQ4wA,3014
10
- gremlin_python/driver/request.py,sha256=IlqBmQlT2UU95xbY6z1ajlmNQeDZ4ePzT4uF8M0USFk,953
11
- gremlin_python/driver/resultset.py,sha256=_-13igfH1zQ72mgreDptPmUaXnadnprERVQTSZWeIl4,2669
12
- gremlin_python/driver/serializer.py,sha256=wFCPAltRB2F0p9ZFyD0x2thoBmI81gPFZhAkV5XLBOQ,10244
13
- gremlin_python/driver/transport.py,sha256=aEXb9oS1SMI9oKWYINnWuYhYaosi6FdsOJ7oj6FzkkY,1246
14
- gremlin_python/driver/useragent.py,sha256=JrzuwcQWa5Srt58XdFdtWwiMfCKHbM7yWscfLTXSi8U,1588
15
- gremlin_python/driver/aiohttp/__init__.py,sha256=xzdixoKYCJCe4aRILYqdartQi4Py5fcQWqif3zzyUC8,787
16
- gremlin_python/driver/aiohttp/transport.py,sha256=ZOfpSOA1ucw1tNnmp23cRukzoy3mVVKLjEkZpEl8EdE,11392
17
- gremlin_python/process/__init__.py,sha256=rbOOdo_19nz_mHTXVc5p8ZXLI5pUGMfXLKQiw7Olu7g,850
18
- gremlin_python/process/anonymous_traversal.py,sha256=S_lVjOaUK5RVYnBVHINfp3lvWYe_c63_jgON4j8era4,2342
19
- gremlin_python/process/graph_traversal.py,sha256=Dh5Y8a1lRfkbCN_o96WIj-2qI1jHUGTcA_oJwQ8cRc0,71263
20
- gremlin_python/process/strategies.py,sha256=pTWvl7gjYepVRwuktp9z15MbxO-Pl_JaH4O2FbRpXa8,10835
21
- gremlin_python/process/translator.py,sha256=NuaA2WfepvgDm3DrNa_u2Qvz70s9t6ICbFltPglQwBI,11147
22
- gremlin_python/process/traversal.py,sha256=eynbuTrM4dEAmnvAQcmvhzAMden6UIxZtj4xAcqn-wE,24667
23
- gremlin_python/structure/__init__.py,sha256=zo5zR3kruv1h4_A80IxZ1IZrS0Ud5lVjpGm0PxBAP20,852
24
- gremlin_python/structure/graph.py,sha256=88h1OhLJ_q1lVku0Tppf3Du73CagIrsd8uJmM0nq2dE,3941
25
- gremlin_python/structure/io/__init__.py,sha256=zo5zR3kruv1h4_A80IxZ1IZrS0Ud5lVjpGm0PxBAP20,852
26
- gremlin_python/structure/io/graphbinaryV1.py,sha256=KTICZcXIdPgvoc8irTLHHOVSghVN-HYf4Vd2P5nH5Ec,39437
27
- gremlin_python/structure/io/graphsonV2d0.py,sha256=jIkLXJRCOP8HSWWLBU4GAX-jgwHy2e6i4LaIApS0Fss,22350
28
- gremlin_python/structure/io/graphsonV3d0.py,sha256=N0tBF6Y55NHjSzZutgFD3W7KkoD7ItQz_gz8Nq9DMLw,25494
29
- gremlin_python/structure/io/util.py,sha256=x0OEkGGX2ajgOuSbz1j3dO3_IlOPnPLV4m6SGAmNAeM,1846
30
- gremlinpython-3.8.0.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
31
- gremlinpython-3.8.0.dist-info/licenses/NOTICE,sha256=8gM_LEyfAHZhVj_v_2rkqb4qlc9GJmPCvKDHOHYGpmM,170
32
- gremlinpython-3.8.0.dist-info/METADATA,sha256=FfhR6bGpgvS4eZSmJNorcRQDOSWQaroj8KOvuU2z6Z4,6668
33
- gremlinpython-3.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
34
- gremlinpython-3.8.0.dist-info/top_level.txt,sha256=VVeR1g-oOCZBmKIaVzZ7fF2BYrnqOWpw7C2H71ksTAU,15
35
- gremlinpython-3.8.0.dist-info/RECORD,,
@@ -1,5 +0,0 @@
1
- Apache TinkerPop
2
- Copyright 2015-2025 The Apache Software Foundation.
3
-
4
- This product includes software developed at
5
- The Apache Software Foundation (http://www.apache.org/).