Skip to main content

GedGraph

Generate genealogical charts from GEDCOM files using GraphViz.

Features

  • Pedigree Charts: Visualize ancestors of an individual
  • Relationship Charts: Find and visualize relationships between two individuals
  • Hourglass Charts: Show ancestors and descendants or split by parental lines
  • Bowtie Charts: Horizontal hourglass layout with left-right orientation
  • Smart Path Finding: Automatically finds the shortest relationship path using breadth-first search
  • Relationship Prioritization: Prefers blood relationships via male line, then female line, then half-blood relationships
  • Multiple Path Detection: Identifies when multiple equally short paths exist
  • Spouse Visualization: Shows spouses/partners alongside the direct bloodline
  • Marriage Status Indicators: Solid lines for married couples, dashed lines for unmarried couples
  • Flexible Date Handling: Uses birth/death dates with fallback to baptism/burial dates
  • Enhanced Name Formatting: Supports GEDCOM name components (prefix, title, given, surname, suffix)
  • Progress Feedback: Braille-spinner progress indicators with --verbose, --quiet, --no-color, and --ascii options
  • GraphViz Output: Generates DOT files that can be rendered to various image formats

Prerequisites

  • Python 3.11+
  • GraphViz (dot command) installed on your system to render DOT files to images

Installation

pip install kimon-gedgraph

Development Setup

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install in editable mode with dev dependencies
pip install -e ".[dev]"

Usage

Pedigree Chart

Generate a pedigree chart showing ancestors of an individual:

gedgraph pedigree family.ged @I10@ -o output.dot

Options:

  • -g, --generations: Number of generations to include (default: 4)

Example:

gedgraph pedigree family.ged @I10@ -g 5 -o pedigree.dot

Relationship Chart

Find and visualize the relationship between two individuals:

gedgraph relationship family.ged @I10@ @I20@ -o output.dot

Options:

  • -d, --max-depth: Maximum search depth (default: 50)

Example:

gedgraph relationship family.ged @I1@ @I50@ -d 15 -o relationship.dot

Hourglass Chart

Visualize ancestors and descendants or split by parental lines:

# Ancestors above, descendants below
gedgraph hourglass family.ged @I10@ -v descendants -o hourglass.dot

# Father's line above, mother's line below
gedgraph hourglass family.ged @I10@ -v ancestor-split -o hourglass.dot

Options:

  • -g, --generations: Number of generations in each direction (default: 4)
  • -v, --variant: Chart variant - ancestor-split or descendants (default: ancestor-split)

Bowtie Chart

Horizontal hourglass layout with left-right orientation:

# Ancestors left, descendants right
gedgraph bowtie family.ged @I10@ -v descendants -o bowtie.dot

# Father's line left, mother's line right
gedgraph bowtie family.ged @I10@ -v ancestor-split -o bowtie.dot

Options:

  • -g, --generations: Number of generations in each direction (default: 4)
  • -v, --variant: Chart variant - ancestor-split or descendants (default: ancestor-split)

Global Options

These flags must appear before the subcommand name:

# Suppress progress output
gedgraph --quiet pedigree family.ged @I10@ -o output.dot

# Show progress with timing
gedgraph --verbose relationship family.ged @I10@ @I20@ -o output.dot

# Disable colored output
gedgraph --no-color hourglass family.ged @I10@ -o output.dot

# Use ASCII decorations instead of braille/check marks
gedgraph --ascii pedigree family.ged @I10@ -o output.dot
Flag Description
--verbose Show detailed progress with timing
-q, --quiet Suppress progress output
--no-color Disable colored output
--ascii / --no-ascii Use ASCII decorations ([OK], [!], |/-\) instead of , and the braille spinner

--ascii is for consoles whose fonts cannot draw braille — common on Windows, where the spinner otherwise renders as a row of boxes. It can also be set with GEDGRAPH_ASCII=1; the flag wins over the environment variable in both directions.

Output Encoding

Names are written to stdout in the console's own encoding. When output is redirected to a file or a pipe, UTF-8 is used instead — there is no terminal on the other end whose encoding matters, and this is what makes names with Greek, Cyrillic or accented characters survive gedgraph ... > out.txt.

If you pin an encoding yourself with PYTHONIOENCODING, that choice is respected. Characters it cannot represent are escaped (Α) rather than causing the command to fail. Generated DOT files are always UTF-8, independent of the console.

Rendering DOT Files

Convert DOT files to images using GraphViz:

# PNG
dot -Tpng output.dot -o output.png

# PDF
dot -Tpdf output.dot -o output.pdf

# SVG
dot -Tsvg output.dot -o output.svg

Relationship Path Sorting

When multiple equally short paths exist between two individuals, GedGraph prioritizes them in this order:

  1. Full blood relationships via male line
  2. Full blood relationships via female line
  3. Half-blood relationships via male line
  4. Half-blood relationships via female line

The tool will generate charts for all paths of equal shortest length.

Example Output

The generated DOT files include:

  • Comments: Generation distance, path length, and relationship description
  • Color Coding:
    • Start individual (coral)
    • End individual (light blue)
    • Direct bloodline (light green)
    • Spouses/partners (light yellow)
  • Labels: Names with birth/death years in (YYYY - YYYY) format
  • Relationship Lines:
    • Solid arrows for parent-child relationships
    • Solid lines for married couples
    • Dashed lines for unmarried couples
  • Horizontal Alignment: Spouses are positioned next to their partners using rank constraints

Error Handling

GedGraph will exit with an error if:

  • The GEDCOM file doesn't exist
  • An individual ID is not found in the GEDCOM file
  • No relationship exists between two individuals (for relationship charts)

Development

See DEVELOPER.md for development setup and architecture details.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kimon_gedgraph-1.2.0.tar.gz (31.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kimon_gedgraph-1.2.0-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file kimon_gedgraph-1.2.0.tar.gz.

File metadata

  • Download URL: kimon_gedgraph-1.2.0.tar.gz
  • Upload date:
  • Size: 31.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for kimon_gedgraph-1.2.0.tar.gz
Algorithm Hash digest
SHA256 6da47fc8399e6215881a15550e54a84edb49c4ceeed344fe63b0c288726049df
MD5 49c85201379cb3de9ae53bacd60e085b
BLAKE2b-256 fff313f297989afcd8cb698653375bb1d38503fd7d774d51cf3a225ba361a737

See more details on using hashes here.

Provenance

The following attestation bundles were made for kimon_gedgraph-1.2.0.tar.gz:

Publisher: publish.yml on kimon1230/gedgraph

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kimon_gedgraph-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: kimon_gedgraph-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 18.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for kimon_gedgraph-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ed06b83bdf7d6b4e9d2bd7e1ae1f09e7a54446666ceccdabd5b6c85498d51396
MD5 88ba624265a6992fa1afa4d6ce7c180b
BLAKE2b-256 ccdcd91f27272c5fa0db1dbe6af2638225b34abafdbb04738dde68f417cb6c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kimon_gedgraph-1.2.0-py3-none-any.whl:

Publisher: publish.yml on kimon1230/gedgraph

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.2.1

2 files

This release

1.2.0 This release

2 files

1.1.0

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page