I have a GEDCOM file exported from Ancestral Quest with my family tree, it is quite extense, and I would like to do some analysis on it. I want to construct a tree structure, and explore it recursively.
Is there any library that could read the GEDCOM file and create the tree structure, or some type of directed graph?
You can use python-gendom to parse the file and transform it to a LightGraphs' graph. Subsequently GraphPlot can be used to actually make a plot.
Here is a working code skeleton to start with: