Skip to main content

A gedcom tool to parse, browse and modify gedcom files

Project description

FastGedcom

A gedcom tool to parse, browse and modify gedcom files

pip install fastgedcom

Want to open a gedcom file?

from fastgedcom.parser import guess_encoding, parse

gedcom_file = "my_gedcom_file.ged"
with open(gedcom_file, "r", encoding=guess_encoding(gedcom_file)) as f:
	document, warnings = parse(f)

print(warnings) # in case of duplicate record reference

Simple to write! Free to chose the fields, the data, and the formatting.

from fastgedcom.helpers import format_date

birth_date = (document["@I1@"] > "BIRT") >= "DATE"
print(format_date(birth_date))

A field is missing? FakeLine to the rescue. Like a TrueLine, but no error, no value, and no error handling code!

from fastgedcom.base import is_true

indi = document["@I1"]
death_date = (indi > "DEAT") >= "DATE"
if death_date != "": print(format_date(death_date)) 
if not is_true(indi): print("It was not even present!")

Don't like magic operator overload? Use standard methods!

indi = document.get_record("@I1@")
surname = indi.get_sub_line("NAME").get_sub_line_payload("SURN")

Typehints for salvation!

from fastgedcom.base import Document, FakeLine, IndiRef, Record, is_true
from fastgedcom.helpers import format_name

def print_infos(gedcom: Document, indi: IndiRef) -> None:
	record = gedcom[indi]
	if is_true(record): print_name(record)

def print_name(record: Record | FakeLine) -> None:
	print(format_name(record >= "NAME"))

print_infos(document, "@I1@")

Iteration on families is fast. Don't blink!

from fastgedcom.family_aid import FamilyAid

booster = FamilyAid(document)

def number_of_ascendants(indi: Record | FakeLine) -> int:
	if not is_true(indi): return 1
	father, mother = booster.get_parents(indi.tag)
	return 1+max(number_of_ascendants(father), number_of_ascendants(mother))

def number_of_descendants(indi: IndiRef) -> int:
	children = booster.get_children(indi)
	return len(children) + sum(number_of_descendants(c) for c in children)

print(number_of_ascendants(document["@I1@"]))
print(number_of_descendants("@I1@"))

You want to see more? Here are some examples

I promise you it is fast! I test it and I use it.

Feature details

  • Supports the read of gedcom files encoded in UTF-8 with and without BOM, UTF-16 (also named UNICODE), ANSI, and ANSEL.
  • Supports the export to gedcom files encoded in UTF-8, UTF-16, and ANSI.

Feedbacks

Feedbacks are welcome, and they will be greatly appreciated!

If you like this project, consider putting a star on Github, thank you!

For any feedback or question, please feel free to contact me by email at gatien.bouyer.dev@gmail.com or via Github issues.

Project details


Download files

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

Source Distribution

fastgedcom-0.0.4.tar.gz (11.2 kB view hashes)

Uploaded Source

Built Distribution

fastgedcom-0.0.4-py3-none-any.whl (10.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page