Software Details:
Version: 0.1
Upload Date: 20 Feb 15
Distribution Type: Freeware
Downloads: 56
Structurarium is a tool that provides a set of Python written networked databases.
Structurarium provides the following databases: structurarium.memo, structurarium.taskqueue, and structurarium.graph.
Getting started
~ pip install Structurarium
~ structurarium.graph --host 127.0.0.1 --port 8000
In a Python REPL:
>>> from structurarium.graph.client.graph import Graph
>>> db = Graph(address=('127.0.0.1', 8000))
>>> one = db.Vertex()
>>> one.save()
>>> two = db.Vertex()
>>> two.save()
>>> edge = db.Edge(one, two)
>>> edge.save()
>>> loaded_one = db.load(one.identifier)
>>> queried_two = loaded_one.outgoings().end().object()
Requirements:
- Python
Comments not found