⚠️ ⚠️ This repo is archived and the open source code have been contributed to apache hugegraph-ai . Welcome to contribute ~
A Python SDK for Apache HugeGraph, maintained by cvte research data-mining team.
This project currently in alpha testing, will open source the code soon.
https://pypi.org/project/hugegraph-python/
pip3 install hugegraph-pythonrelease soon
from hugegraph.connection import PyHugeGraph
# init client
client = PyHugeGraph("127.0.0.1", "8080", user="admin", pwd="pwd", graph="hugegraph")
# schema
schema = client.schema()
schema.getVertexLabels()
# graph
g = client.graph()
g.getVertexById("1:tom")
g.close()
# gremlin
gremlin = client.gremlin()
gremlin.exec("g.V().limit(10)")Any questions contact ming@apache.org
- TODO
- document
- ut
- ci
- more api