All Projects → Thimxx → pyGenealogical-Tools

Thimxx / pyGenealogical-Tools

Licence: GPL-3.0 license
A python interface for genealogical tools (Geni, RootsMagic, GEDCOM, Family Search...)

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to pyGenealogical-Tools

open-history-data
Поиск людей из прошлого
Stars: ✭ 19 (-20.83%)
Mutual labels:  genealogy
topola-viewer
Topola Genealogy Viewer – interactive genealogy visualization
Stars: ✭ 116 (+383.33%)
Mutual labels:  genealogy
fs-js-lite
Lite JS SDK for the FamilySearch API
Stars: ✭ 31 (+29.17%)
Mutual labels:  genealogy
gedcom
Gedcom utility program
Stars: ✭ 14 (-41.67%)
Mutual labels:  genealogy
backend
Laravel 8 backend for a genealogy website.
Stars: ✭ 82 (+241.67%)
Mutual labels:  genealogy
topola
Topola – online genealogy visualization
Stars: ✭ 57 (+137.5%)
Mutual labels:  genealogy
webtrees-fancy-research-links
Fancy Research Links Module for webtrees
Stars: ✭ 20 (-16.67%)
Mutual labels:  genealogy
Gedcom.pm
Gedcom - a Perl module to manipulate Gedcom genealogy files
Stars: ✭ 23 (-4.17%)
Mutual labels:  genealogy
familytree
A very incomplete Django-based genealogy web app.
Stars: ✭ 41 (+70.83%)
Mutual labels:  genealogy
GEDKeeper
GEDKeeper - program for work with personal genealogical database
Stars: ✭ 78 (+225%)
Mutual labels:  genealogy
GenealogyTreeInGit
Convert family trees from gedcom format to list of git commands that can be executed to build a family git repository
Stars: ✭ 15 (-37.5%)
Mutual labels:  genealogy
gramps-online
A simple online version of Gramps
Stars: ✭ 23 (-4.17%)
Mutual labels:  genealogy
MyopicVicar
MyopicVicar (short-sighted clergyman!) is an open-source genealogy record database and search engine. It powers the FreeREG database of parish registers, the FreeCEN database of census records, the next version of FreeBMD database of Civil Registration indexes and other Genealogical applications.
Stars: ✭ 40 (+66.67%)
Mutual labels:  genealogy
ged2site
Create a family tree website from a Gedcom file
Stars: ✭ 25 (+4.17%)
Mutual labels:  genealogy
GeneGenie.Gedcom
A .Net Standard library for loading, saving, working with and analysing family trees stored in the GEDCOM format.
Stars: ✭ 37 (+54.17%)
Mutual labels:  genealogy
nuxt
Nuxt 3 and Vue 3 client for genealogy project. Family tree and genealogy data processing website software client.
Stars: ✭ 97 (+304.17%)
Mutual labels:  genealogy
lineage
Family Tree Data Expression Engine
Stars: ✭ 90 (+275%)
Mutual labels:  genealogy

pyGenealogical-Tools

alt text alt text alt text alt text

Several genealogical python tools included which are under development.

It is mainly offering the following capabilities:

  1. Access by command line to Geni profiles and relationship information.
  2. Geni interface
  • Build a tree of ancestors in Geni
  • Build a map of cousins of a given profile in Geni.
  • Create a child, parents or partner in geni
  • Delete a profile in geni
  • Get profile, relations and union data.
  • Extract the tree of descendants of a profile in gedcom
  1. Several genealogical functions.
  • Get children surname based on several naming conventions
  • Get name removing surnames
  • Check dates consistency in profiles
  • Guess the names and surnames from a complete surname (beta)
  1. A common base profile for any genealogical input
  • Merging profile algorithm (basic)
  1. A tool for parsing FamilySearch excel outputs of sons in a family.
  • Import to Geni an excel output of children from FamilySearch records, it will merge common profiles
  1. Interface with several online registers:
  1. GEDCOM file wrapper
  • It allows to read gedcomfiles and operated them (add new profiles)
  • It allows to transform data from other sources (Geni, RootsMagic) into GEDCOM.
  1. Automatic investigation
  • For those interfaces avaialble, it can found potential matches in a GEDCOM.
  1. RootsMagic interface (version 7)
  • It provide a simple interface to RootsMagic database allowing to access the data and the different profiles.
  1. Matching and synchronization between different genealogical databases
  • It identifies profiles existing in 2 databases (i.e. RootsMagic and Geni) and synchronizes, by creating missing profiles
  1. Perform some quality checks of wrong or missing data

Notice that this import is intended to import registers from FamilySearch, is you are interested in importing profiles from a family tree located in FamilySearch to Geni use this tool: https://github.com/jeffg2k/SmartCopy, which is a pretty nice piece of software and very helpful.

This application uses the Geni API but is not endorsed, operated, or sponsored by Geni.com.

Installation instructions

You can install it using pip

pip install pyGenealogicalTools

Tested using python 3.5.3 and 3.6.2, happy to test other versions if needed. Main limitation are the testing capabilities in travis for wxpython.

In order to use the tools you will need to install the following modules:

All the previous modules are available in the requirements.txt file, but wxpython needs to be manually installed, visit wxpython page for further info.

Concerning testing, the repository if configured to use nose, coverage, nose-htmloutput, so you will need to install in your local installation as well.

Geni KEY

In order to use the interface, you will need to generate an application card inside Geni and obtain a key. You can create the application card in this: location https://www.geni.com/platform/developer/api_explorer, the key will be only valid for 24h, so you will need to register again the key regularly.

For each execution of the Geni API contained in this software, you will later need to introduce the key. Do not make the key public. In the examples area you have a description of how to obtain the key in execute the complete module, in a nutshell this is the way to set the Geni Key:

from pyGeni import set_token
GENI_KEY = "IntroduceHereYourGeniKey"
set_token(GENI_KEY)

MapBox API Key

As google Maps API is no longer working without payments details, Google API has been replaced by MapBox API. In order to work the library needs the MAPBOX API (free of charge). Just set-up this way:

from pyGenealogy import set_mapbox_key
MAPBOX_KEY = "IntroduceHereYourMapBoxKey"
set_mapbox_key(MAPBOX_KEY)

Usage

The file GeniTools is the one I am using as main programme. It is not yet very stable, but the libraries are getting. Just use the input file "INPUT_TEMPLATE" and select as input inside the script GeniTools.py, the input file needs to include the Geni token and the starting profile.

In order to get the token just go here: https://www.geni.com/platform/developer/api_explorer and introduce it in the input file as GENIKEY. Notice that the key gets updated almost everyday... so everytime you are using this script you will need to do it.

Interested in helping?

There are several areas where you can collaborate:

  • Report any wrong behaviour as an issue
  • Comment the code where it is not properly commented
  • Provide naming and surname conventions for other languages
  • Support on documentation development or examples
  • Solve an specific issue
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].