Skip to main content

Gremlin-Python for Apache TinkerPop

Project description

Apache TinkerPop™ is a graph computing framework for both graph databases (OLTP) and graph analytic systems (OLAP). Gremlin is the graph traversal language of TinkerPop. It can be described as a functional, data-flow language that enables users to succinctly express complex traversals on (or queries of) their application’s property graph.

Gremlin-Python implements Gremlin within the Python language and can be used on any Python virtual machine including the popular CPython machine. Python’s syntax has the same constructs as Java including “dot notation” for function chaining (a.b.c), round bracket function arguments (a(b,c)), and support for global namespaces (a(b()) vs a(__.b())). As such, anyone familiar with Gremlin-Java will immediately be able to work with Gremlin-Python. Moreover, there are a few added constructs to Gremlin-Python that make traversals a bit more succinct.

Gremlin-Python is designed to connect to a “server” that is hosting a TinkerPop-enabled graph system. That “server” could be Gremlin Server or a remote Gremlin provider that exposes protocols by which Gremlin-Python can connect.

A typical connection to a server running on “localhost” that supports the Gremlin Server protocol using websockets from the Python shell looks like this:

>>> from gremlin_python.process.anonymous_traversal import traversal
>>> from gremlin_python.driver.driver_remote_connection import DriverRemoteConnection
>>> g = traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g'))

Once “g” has been created using a connection, it is then possible to start writing Gremlin traversals to query the remote graph:

>>> g.V().both()[1:3].toList()
[v[2], v[4]]
>>> g.V().both()[1].toList()
[v[2]]
>>> g.V().both().name.toList()
[lop, vadas, josh, marko, marko, josh, peter, ripple, lop, marko, josh, lop]

Sample Traversals

The Gremlin language allows users to write highly expressive graph traversals and has a broad list of functions that cover a wide body of features. The Reference Documentation describes these functions and other aspects of the TinkerPop ecosystem including some specifics on Gremlin in Python itself. Most of the examples found in the documentation use Groovy language syntax in the Gremlin Console. For the most part, these examples should generally translate to Python with some modification. Given the strong correspondence between canonical Gremlin in Java and its variants like Python, there is a limited amount of Python-specific documentation and examples. This strong correspondence among variants ensures that the general Gremlin reference documentation is applicable to all variants and that users moving between development languages can easily adopt the Gremlin variant for that language.

Create Vertex

from gremlin_python.process.traversal import T
from gremlin_python.process.traversal import Cardinality

id = T.id
single = Cardinality.single

def create_vertex(self, vid, vlabel):
    # default database cardinality is used when Cardinality argument is not specified
    g.addV(vlabel).property(id, vid). \
      property(single, 'name', 'Apache'). \
      property('lastname', 'Tinkerpop'). \
      next()

Find Vertices

def list_all(self, limit=500):
    g.V().limit(limit).elementMap().toList()

def find_vertex(self, vid):
    g.V(vid).elementMap().next()

def list_by_label_name(self, vlabel, name):
    g.V().has(vlabel, 'name', name).elementMap().toList()

Update Vertex

from gremlin_python.process.traversal import Cardinality

single = Cardinality.single

def update_vertex(self, vid, name):
    g.V(vid).property(single, 'name', name).next()

NOTE that versions suffixed with “rc” are considered release candidates (i.e. pre-alpha, alpha, beta, etc.) and thus for early testing purposes only. These releases are not suitable for production.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

gremlinpython-3.6.3rc1.tar.gz (48.7 kB view details)

Uploaded Source

Built Distribution

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

gremlinpython-3.6.3rc1-py2.py3-none-any.whl (74.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file gremlinpython-3.6.3rc1.tar.gz.

File metadata

  • Download URL: gremlinpython-3.6.3rc1.tar.gz
  • Upload date:
  • Size: 48.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.28.2 setuptools/58.3.0 requests-toolbelt/0.10.1 tqdm/4.64.1 CPython/3.8.10

File hashes

Hashes for gremlinpython-3.6.3rc1.tar.gz
Algorithm Hash digest
SHA256 9f1fc0c772015da0775d4cead22e32708c3fec26ab398d9c7904511c388f69b5
MD5 b1881f4c4ab37af26c5440e027387b86
BLAKE2b-256 fe8b4d5ecdb342e9c778851b854b3504b65cf6489dda1fe693d62767d189205e

See more details on using hashes here.

File details

Details for the file gremlinpython-3.6.3rc1-py2.py3-none-any.whl.

File metadata

  • Download URL: gremlinpython-3.6.3rc1-py2.py3-none-any.whl
  • Upload date:
  • Size: 74.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.28.2 setuptools/58.3.0 requests-toolbelt/0.10.1 tqdm/4.64.1 CPython/3.8.10

File hashes

Hashes for gremlinpython-3.6.3rc1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1e279852dc727f598fb403a5a5f0f0aa52a1afee0c5615108e5503a9800a4f21
MD5 114a44061a9f312d1faf8af0f4e68b0e
BLAKE2b-256 e79f0bac25c1533ed12bc51c79918bf560df1858e2945541bfb3114c6a781a2f

See more details on using hashes here.

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