django-gdm

Genealogy Data Models for Django


License
MIT
Install
pip install django-gdm==0.3

Documentation

Genealogy Data Models

django-gdm-dm django-gdm-v django-gdm-bl

GDM is a set of simple Django models for genealogy based data structures (family trees).

Quick start

  1. Add "gdm" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'gdm',
    )
  2. Run python manage.py migrate to create the GDM models.

  3. Include the GDM models in your project like this:

    from gdm.models.tree import Person, Family
  4. Start the development server and visit http://127.0.0.1:8000/admin/ to create persons and families (you'll need the Admin app enabled).