Connecting the Rocketgraph xGT graph analytics engine to other applications.
Project description
xgt_connector Package
This Python package is for connecting the Rocketgraph xGT graph analytics engine to other applications. Rocketgraph xGT can significantly speedup Neo4j queries.
The default connector provided is for Neo4j or AuraDB. The package also provides an optional ODBC connector for connecting to databases or applications that support ODBC. Information about the ODBC connector can be found in the documentation.
| Homepage: | rocketgraph.com |
| Documentation: | rocketgraphai.github.io/xgt_connector |
| General Help: | github.com/rocketgraphai/xgt_connector/discussions |
Requirements
Installation
You can install this python package by executing this command:
python -m pip install xgt_connector
If you want to use the ODBC connector, you can install the optional dependencies like so:
python -m pip install 'xgt_connector[odbc]'
If you don't have Rocketgraph xGT, you can install and run the Developer version from Docker:
docker pull rocketgraph/xgt
docker run --publish=4367:4367 rocketgraph/xgt
Using the xgt_connector
From any Python environment, simply importing both xgt and xgt_connector is all that is needed to operate this connector.
A simple example below shows connecting to Neo4j and xGT, transferring the whole graph database to xGT, running a query in xGT, and printing the results:
import xgt
from xgt_connector import Neo4jConnector, Neo4jDriver
# Connect to xGT and Neo4j.
xgt_server = xgt.Connection()
xgt_server.set_default_namespace('neo4j')
neo4j_server = Neo4jDriver(auth=('neo4j', 'foo'))
conn = Neo4jConnector(xgt_server, neo4j_server)
# Transfer the whole graph.
conn.transfer_to_xgt()
# Run the query.
query = "match(a:foo) return a"
job = xgt_server.run_job(query)
# Print results.
print("Results: ")
for row in job.get_data():
print(row)
API
The available properties are:
- neo4j_relationship_types
- neo4j_node_labels
- neo4j_property_keys
- neo4j_node_type_properties
- neo4j_rel_type_properties
- neo4j_nodes
- neo4j_edges
The available methods are:
- get_xgt_schemas
- create_xgt_schemas
- copy_data_to_xgt
- transfer_to_xgt
- transfer_to_neo4j
Examples
Some examples can be found here:
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xgt_connector-2.6.5.post1.tar.gz.
File metadata
- Download URL: xgt_connector-2.6.5.post1.tar.gz
- Upload date:
- Size: 99.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3ee34e3f7296fc5d9ac6ce574c8ade370f05b46c4ad6aaebd0cd1dec7a5f7ca
|
|
| MD5 |
3dfe89b52363cf5128fee815daa34aaa
|
|
| BLAKE2b-256 |
6f08c64872c9d5295af532d1a201181a97beda1776b5a02cac8d38d7899b073d
|
File details
Details for the file xgt_connector-2.6.5.post1-py3-none-any.whl.
File metadata
- Download URL: xgt_connector-2.6.5.post1-py3-none-any.whl
- Upload date:
- Size: 94.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0df87466b169e14a6a9fdf8c170d694d920c864ae9c462c46eb088823daa1a2
|
|
| MD5 |
45e8aa6de7a74b06d38ab697f77ef37f
|
|
| BLAKE2b-256 |
eb159f8fbc14d2a924cd97a87b455999a5f2e56c98011c055a54df96bf7f622e
|