gremlinpython 4.0.0b1__tar.gz → 4.0.0b2__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.
Files changed (44) hide show
  1. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/MANIFEST.in +1 -1
  2. gremlinpython-4.0.0b2/NOTICE +5 -0
  3. {gremlinpython-4.0.0b1/gremlinpython.egg-info → gremlinpython-4.0.0b2}/PKG-INFO +24 -11
  4. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/README.rst +1 -1
  5. gremlinpython-4.0.0b2/gremlin_python/__init__.py +21 -0
  6. {gremlinpython-4.0.0b1/gremlin_python → gremlinpython-4.0.0b2/gremlin_python/driver}/__init__.py +1 -1
  7. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/aiohttp/__init__.py +1 -1
  8. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/aiohttp/transport.py +1 -1
  9. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/auth.py +1 -1
  10. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/client.py +1 -1
  11. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/connection.py +1 -1
  12. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/driver_remote_connection.py +1 -1
  13. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/protocol.py +1 -1
  14. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/remote_connection.py +1 -1
  15. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/request.py +1 -1
  16. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/resultset.py +1 -1
  17. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/serializer.py +2 -2
  18. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/transport.py +3 -3
  19. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/driver/useragent.py +2 -2
  20. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/process/__init__.py +1 -1
  21. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/process/anonymous_traversal.py +1 -1
  22. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/process/graph_traversal.py +129 -24
  23. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/process/strategies.py +15 -17
  24. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/process/traversal.py +50 -4
  25. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/statics.py +16 -2
  26. {gremlinpython-4.0.0b1/gremlin_python/driver → gremlinpython-4.0.0b2/gremlin_python/structure}/__init__.py +1 -1
  27. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/structure/graph.py +28 -4
  28. {gremlinpython-4.0.0b1/gremlin_python/structure → gremlinpython-4.0.0b2/gremlin_python/structure/io}/__init__.py +3 -3
  29. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/structure/io/graphbinaryV4.py +89 -6
  30. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/structure/io/graphsonV4.py +20 -9
  31. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlin_python/structure/io/util.py +1 -1
  32. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2/gremlinpython.egg-info}/PKG-INFO +24 -11
  33. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlinpython.egg-info/SOURCES.txt +1 -3
  34. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlinpython.egg-info/requires.txt +7 -0
  35. gremlinpython-4.0.0b2/pyproject.toml +79 -0
  36. gremlinpython-4.0.0b2/setup.cfg +4 -0
  37. gremlinpython-4.0.0b1/NOTICE +0 -5
  38. gremlinpython-4.0.0b1/gremlin_python/__version__.py +0 -20
  39. gremlinpython-4.0.0b1/gremlin_python/structure/io/__init__.py +0 -20
  40. gremlinpython-4.0.0b1/setup.cfg +0 -11
  41. gremlinpython-4.0.0b1/setup.py +0 -93
  42. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/LICENSE +0 -0
  43. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlinpython.egg-info/dependency_links.txt +0 -0
  44. {gremlinpython-4.0.0b1 → gremlinpython-4.0.0b2}/gremlinpython.egg-info/top_level.txt +0 -0
@@ -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
@@ -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,22 +1,36 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: gremlinpython
3
- Version: 4.0.0b1
3
+ Version: 4.0.0b2
4
4
  Summary: Gremlin-Python for Apache TinkerPop
5
- Home-page: https://tinkerpop.apache.org
6
- Maintainer: Apache TinkerPop
7
- Maintainer-email: dev@tinkerpop.apache.org
5
+ Maintainer-email: Apache TinkerPop <dev@tinkerpop.apache.org>
8
6
  License: Apache 2
9
- Platform: UNKNOWN
7
+ Project-URL: Homepage, https://tinkerpop.apache.org
10
8
  Classifier: Intended Audience :: Developers
11
9
  Classifier: License :: OSI Approved :: Apache Software License
12
10
  Classifier: Natural Language :: English
13
11
  Classifier: Programming Language :: Python :: 3
14
- Requires-Python: >=3.9
12
+ Requires-Python: >=3.10
15
13
  Description-Content-Type: text/x-rst
16
- Provides-Extra: kerberos
17
- Provides-Extra: ujson
18
14
  License-File: LICENSE
19
15
  License-File: NOTICE
16
+ Requires-Dist: nest_asyncio
17
+ Requires-Dist: aiohttp<4.0.0,>=3.8.0
18
+ Requires-Dist: aenum<4.0.0,>=1.4.5
19
+ Requires-Dist: isodate<1.0.0,>=0.6.0
20
+ Requires-Dist: boto3
21
+ Requires-Dist: botocore
22
+ Requires-Dist: async-timeout<5.0,>=4.0.3; python_version < "3.11"
23
+ Provides-Extra: kerberos
24
+ Requires-Dist: kerberos<2.0.0,>=1.3.0; sys_platform != "win32" and extra == "kerberos"
25
+ Provides-Extra: ujson
26
+ Requires-Dist: ujson>=2.0.0; extra == "ujson"
27
+ Provides-Extra: test
28
+ Requires-Dist: pytest<8.0.0,>=6.2.5; extra == "test"
29
+ Requires-Dist: radish-bdd==0.18.2; extra == "test"
30
+ Requires-Dist: lxml==5.3.0; extra == "test"
31
+ Requires-Dist: PyHamcrest<3.0.0,>=1.9.0; extra == "test"
32
+ Requires-Dist: PyYAML>=5.3; extra == "test"
33
+ Dynamic: license-file
20
34
 
21
35
  .. Licensed to the Apache Software Foundation (ASF) under one
22
36
  .. or more contributor license agreements. See the NOTICE file
@@ -26,7 +40,7 @@ License-File: NOTICE
26
40
  .. "License"); you may not use this file except in compliance
27
41
  .. with the License. You may obtain a copy of the License at
28
42
  ..
29
- .. http://www.apache.org/licenses/LICENSE-2.0
43
+ .. http://www.apache.org/licenses/LICENSE-2.0
30
44
  ..
31
45
  .. Unless required by applicable law or agreed to in writing,
32
46
  .. software distributed under the License is distributed on an
@@ -137,4 +151,3 @@ Update Vertex
137
151
 
138
152
  NOTE that versions suffixed with "rc" are considered release candidates (i.e. pre-alpha, alpha, beta, etc.) and
139
153
  thus for early testing purposes only. These releases are not suitable for production.
140
-
@@ -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
@@ -0,0 +1,21 @@
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
+
20
+ __author__ = 'Marko A. Rodriguez (http://markorodriguez.com)'
21
+ __version__ = '4.0.0b2'
@@ -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,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
@@ -137,7 +137,7 @@ class GraphBinarySerializersV4(object):
137
137
  def finalize_message(self, message):
138
138
  ba = bytearray()
139
139
 
140
- ba.extend(graphbinaryV4.uint8_pack(0x81))
140
+ ba.extend(graphbinaryV4.uint8_pack(0x84))
141
141
  fields = message["fields"]
142
142
  ba.extend(self.int_pack(len(fields)))
143
143
  for k, v in fields.items():
@@ -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 = "4.0.0-beta.1" # DO NOT MODIFY - Configured automatically by Maven Replacer Plugin
21
+ gremlin_version = "4.0.0-beta.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