Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

could someone point me to a working use of a graph database for genealogy? I would like to learn neo4j and I use python so I was looking to make a genealogy graph db for myself to learn graph db's. I searched for examples to emulate and learn from (any graph db, any language) but was surprised how little I found.

Note I mean graph db which has a different structure than a relational db. See http://en.m.wikipedia.org/wiki/Graph_database.

I'm looking for an example schema for genealogy.

share|improve this question
what do you mean by a graph db ? there are models to store genealogy info in database but the graphs need to be rendered by a gui on the client or in case of a web app by a framework that translates the model to javascript with canvas or svg – peter Sep 28 '12 at 11:47
1  
@Peter "graph" can also mean a mathematical graph as in "a set of vertices and edges". – Hans Then Sep 28 '12 at 11:57
@Duncan have you tried the documentation of neo4j itself? – Hans Then Sep 28 '12 at 12:00

1 Answer

You might be looking for python-embedded aka neo4j-embedded on Pypi, there is walkthrough of the installation in neo4j documentation some tips for Ubuntu:

Add this line «deb http://debian.neo4j.org/repo stable/» in «/etc/apt/sources.list.d/neo4j.list»:

sudo aptitude update
sudo aptitude install neo4j python-jpype

You need to install neo4j:

pip install neo4j-embedded

And maybe add this to your .bashrc:

export CLASSPATH=/usr/lib/jvm/java-6-openjdk/jre/lib/
export JAVA_HOME=/usr/lib/jvm/java-6-openjdk/jre/
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.