Skip to main content

JanusGraph-Python extends Apache TinkerPop™s Gremlin-Python with support for JanusGraph-specific types.

Project description

JanusGraph-Python

JanusGraph-Python extends Apache TinkerPop™'s Gremlin-Python with support for JanusGraph-specific types.

Usage

To connect to JanusGraph Server, a DriverRemoteConnection instance needs to be created and configured with a message serializer that adds support for JanusGraph specific types.

This can be done like this for GraphSON 3:

from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection
from janusgraph_python.driver.serializer import JanusGraphSONSerializersV3d0

connection = DriverRemoteConnection(
  'ws://localhost:8182/gremlin', 'g',
  message_serializer=JanusGraphSONSerializersV3d0())

This can be done like this for GraphBinary:

from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection
from janusgraph_python.driver.serializer import JanusGraphBinarySerializersV1

connection = DriverRemoteConnection(
 'ws://localhost:8182/gremlin', 'g',
 message_serializer=JanusGraphBinarySerializersV1())

Note that the client should be disposed on shut down to release resources and to close open connections with connection.close(). The connection can then be used to configure a GraphTraversalSource:

from gremlin_python.process.anonymous_traversal import traversal

g = traversal().with_remote(connection)
# Reuse 'g' across the application

The GraphTraversalSource g can now be used to spawn Gremlin traversals:

hercules_age = g.V().has("demigod", "name", "hercules").values("age").next()
print(f"Hercules is {hercules_age} years old.")

Refer to the chapter Gremlin Query Language in the JanusGraph docs for an introduction to Gremlin and pointers to further resources. The main syntactical difference for Gremlin-Python is that it follows Python naming conventions, e.g., method names use snake_case instead of camelCase. Other difference is that when Python reserved words (e.g. "is") overlap with Gremlin steps or tokens, those gets underscore suffix (e.g. "is_").

Text Predicates

The Text class provides methods for full-text and string searches:

from janusgraph_python.process.traversal import Text

g.V().has("demigod", "name", Text.text_prefix("herc")).to_list()

The other text predicates can be used the same way.

Version Compatibility

The lowest supported JanusGraph version is 1.0.0. The following table shows the supported JanusGraph versions for each version of JanusGraph-Python:

JanusGraph-Python JanusGraph
1.0.z 1.0.z
1.1.z (1.0.z,) 1.1.z

While it should also be possible to use JanusGraph-Python with other versions of JanusGraph than mentioned here, compatibility is not tested and some functionality (like added Gremlin steps) will not work as it is not supported yet in case of an older JanusGraph version or was removed in a newer JanusGraph version.

Serialization Formats

JanusGraph-Python supports GraphSON 3 as well as GraphBinary.

Not all of the JanusGraph-specific types are already supported by the formats:

Format RelationIdentifier Text predicates Geoshapes Geo predicates
GraphSON3 x x - -
GraphBinary x x - -

Community

JanusGraph-Python uses the same communication channels as JanusGraph in general. So, please refer to the Community section in JanusGraph's main repository for more information about these various channels.

Please use GitHub issues only to report bugs or request features.

Contributing

Please see CONTRIBUTING.md in JanusGraph's main repository for more information, including CLAs and best practices for working with GitHub.

License

JanusGraph-Python code is provided under the Apache 2.0 license and documentation is provided under the CC-BY-4.0 license. For details about this dual-license structure, please see LICENSE.txt.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

janusgraphpython-1.1.1.tar.gz (29.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

janusgraphpython-1.1.1-py3-none-any.whl (43.0 kB view details)

Uploaded Python 3

File details

Details for the file janusgraphpython-1.1.1.tar.gz.

File metadata

  • Download URL: janusgraphpython-1.1.1.tar.gz
  • Upload date:
  • Size: 29.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for janusgraphpython-1.1.1.tar.gz
Algorithm Hash digest
SHA256 b0a4b82fb69cb30a101b7108a1a83c08c747d00eecbecb884af06b923e4ace2f
MD5 23092291b0441d2b20fd7b44e1b761a3
BLAKE2b-256 fbfbc4d475a1ca2ee4439924de860b07dd45b08398bc859ff1e191e8d3238717

See more details on using hashes here.

Provenance

The following attestation bundles were made for janusgraphpython-1.1.1.tar.gz:

Publisher: release.yml on JanusGraph/janusgraph-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file janusgraphpython-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for janusgraphpython-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 96c87ce0e0f75be715df356d08cb5ae9452c48ec1c817005890ecf8dc8f59e67
MD5 d9d4e3db88d0d39ffea1d2ed0152de05
BLAKE2b-256 0550bf1820ad002004832ec5a00a21558cc3c89c04c286aee548d05e000eaa94

See more details on using hashes here.

Provenance

The following attestation bundles were made for janusgraphpython-1.1.1-py3-none-any.whl:

Publisher: release.yml on JanusGraph/janusgraph-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page