Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elliotchance/gedcom
👪 A Go library and CLI tools for encoding, decoding, traversing, merging, comparing, querying and publishing GEDCOM files.
https://github.com/elliotchance/gedcom
converts decoder gedcom gedcom-encoder gedcom-files go json
Last synced: 10 days ago
JSON representation
👪 A Go library and CLI tools for encoding, decoding, traversing, merging, comparing, querying and publishing GEDCOM files.
- Host: GitHub
- URL: https://github.com/elliotchance/gedcom
- Owner: elliotchance
- License: mit
- Created: 2018-06-25T15:07:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T05:14:02.000Z (5 months ago)
- Last Synced: 2024-10-09T11:36:19.032Z (about 1 month ago)
- Topics: converts, decoder, gedcom, gedcom-encoder, gedcom-files, go, json
- Language: Go
- Homepage:
- Size: 1.04 MB
- Stars: 96
- Watchers: 4
- Forks: 21
- Open Issues: 61
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gedcom - gedcom - library & CLI tools for encoding, decoding, traversing, merging, comparing, querying and publishing GEDCOM files (Parsers / Go)
README
github.com/elliotchance/gedcom
==============================[![Build Status](https://travis-ci.org/elliotchance/gedcom.svg?branch=master)](https://travis-ci.org/elliotchance/gedcom)
[![codecov](https://codecov.io/gh/elliotchance/gedcom/branch/master/graph/badge.svg)](https://codecov.io/gh/elliotchance/gedcom)
![GitHub release](https://img.shields.io/github/release/elliotchance/gedcom.svg)
[![Join the chat at https://gitter.im/gedcom-app/community](https://badges.gitter.im/gedcom-app/community.svg)](https://gitter.im/gedcom-app/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Maintainability](https://api.codeclimate.com/v1/badges/1a31841a6c25ca0e5c24/maintainability)](https://codeclimate.com/github/elliotchance/gedcom/maintainability)---
`github.com/elliotchance/gedcom` is an advanced Go-style library and set of
command-line tools for dealing with
[GEDCOM files](https://en.wikipedia.org/wiki/GEDCOM).You can download the latest binaries for macOS, Windows and Linux on the
[Releases page](https://github.com/elliotchance/gedcom/releases). This will not
require you to install Go or any other dependencies.What Can It Do?
---------------* **Decode and encode** GEDCOM files.
* **Traverse and manipulate** GEDCOM files with the provided API.
* A powerful **query language called
[gedcomq](https://godoc.org/github.com/elliotchance/gedcom/gedcomq)** lets you
query GEDCOM files with a CLI tool. It can output CSV, JSON and other GEDCOM
files.* Render GEDCOM files as **fully static HTML websites**.
* **Compare GEDCOM files** from the same or different providers to find
differences using the very advanced and configurable tool:
`gedcom diff`.* **Merge GEDCOM files** using the same advanced Compare algorithm with gedcomq.
Packages
--------| Package | Description |
| -------------------- | ----------- |
| [![GoDoc](https://godoc.org/github.com/elliotchance/gedcom?status.svg)](https://godoc.org/github.com/elliotchance/gedcom)
`gedcom` | Package gedcom contains functionality for encoding, decoding, traversing, manipulating and comparing of GEDCOM data. |
| [![GoDoc](https://godoc.org/github.com/elliotchance/gedcom/q?status.svg)](https://godoc.org/github.com/elliotchance/gedcom/q)
`gedcom/q` | Package q is the gedcomq parser and engine. |
| [![GoDoc](https://godoc.org/github.com/elliotchance/gedcom/gedcomq?status.svg)](https://godoc.org/github.com/elliotchance/gedcom/gedcomq)
`gedcom/gedcomq` | Gedcomq is a command line tool and query language for GEDCOM files heavily inspired by [jq](https://stedolan.github.io/jq/), in name and syntax. |
| [![GoDoc](https://godoc.org/github.com/elliotchance/gedcom/html?status.svg)](https://godoc.org/github.com/elliotchance/gedcom/html)
`gedcom/html` | Package html is shared HTML rendering components that are shared by the other packages. |
| [![GoDoc](https://godoc.org/github.com/elliotchance/gedcom/util?status.svg)](https://godoc.org/github.com/elliotchance/gedcom/util)
`gedcom/util` | Package util contains shared functions used by several packages. |