PyMogwai is a Python-based implementation of the Gremlin graph traversal language, designed to create and handle knowledge graphs entirely in Python without the need for an external Gremlin server.
Project description
PyMogwai
PyMogwai is a Python-based implementation of the Gremlin graph traversal language, designed to create and handle knowledge graphs entirely in Python without the need for an external Gremlin server.
Features
- Supports knowledge graph creation and manipulation
- Supports the import of arbitrary knowledge graphs with GraphML
- Implements a variety of traversal steps
- Enables one to traverse a graph with these steps
- Ability to integrate data from various sources like Excel, PDF and PowerPoint
- Simple and Pythonic API for graph operations
Demo
Getting started
Creating a Knowledge Graph
To create a graph using PyMogwai
from mogwai.core import MogwaiGraph
graph = MogwaiGraph()
# Add nodes and edges
n1 = graph.add_labeled_node("person", name="Alice", properties={"Age": 30})
n2 = graph.add_labeled_node("person", name="Bob", properties={"Age": 28})
graph.add_labeled_edge(n1, n2, "knows")
Import graphs
from mogwai.parser.graphml_converter import graphml_to_mogwaigraph
graph = graphml_to_mogwaigraph(path, node_label_key="node_label", node_name_key="node_name", edge_label_key="edge_label")
Performing Traversals
To perform any traversal of the graph, create a TraversalSource. Traversals start with a start step (V() or E()), which is followed by a sequence of steps. Note that a traversal can be executed by calling .run() on it.
from mogwai.core.traversal import MogwaiGraphTraversalSource
g = MogwaiGraphTraversalSource(graph)
# Example traversal that returns every person in the graph as a list
res = g.V().has_label("person").to_list().run()
print(res)
In order to use anonymous traversal in complex queries, import the statics module:
from mogwai.core.traversal import MogwaiGraphTraversalSource
from mogwai.core.steps.statics import *
g = MogwaiGraphTraversalSource(graph)
# Example traversal that returns every person in the graph as a list
query = g.V().has_label("person").filter_(properties('age').is_(gte(30))).to_list().by('name')
res = query.run()
print(res)
History
This project started as part of the RWTH Aachen i5 Knowledge Graph Lab SS2024 The original source is hosted at https://git.rwth-aachen.de/i5/teaching/kglab/ss2024/pymogwai 2024-08-15 the repository moved to github for better pypi integration
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 pymogwai-0.0.3.tar.gz.
File metadata
- Download URL: pymogwai-0.0.3.tar.gz
- Upload date:
- Size: 6.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
468bdc3925f0b9591c4584831bbb296f9aa86766ec3814c3345ffbe9f9f68b0d
|
|
| MD5 |
0e54e3106bcd70ad3d118fc80f0c0454
|
|
| BLAKE2b-256 |
e6083cd6586e552128b5ddf7553771fe418aedd7e5e7b9d4ac126a3f4757b186
|
File details
Details for the file pymogwai-0.0.3-py3-none-any.whl.
File metadata
- Download URL: pymogwai-0.0.3-py3-none-any.whl
- Upload date:
- Size: 963.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69d9308d3eb07f56a55644e3fd572189002f80b09ec862dd1236d3794372ebe0
|
|
| MD5 |
a1cf187234465342f1bd39c64b0b836f
|
|
| BLAKE2b-256 |
2ad3f25e754c308974dc0477e0d606f4ff700d3b579437d2899b647f2f549a4b
|