To download the script, click on the green button "Clone or download" on the top of this page and then click on "Download ZIP".
-Current version was updated on March 4th 2018.
+Current version was updated on March 17th 2018.
How to use
# -*- coding: utf-8 -*-
# global import
-from tkinter import Tk, StringVar, IntVar, filedialog, messagebox, Menu, TclError
+from tkinter import Tk, StringVar, IntVar, filedialog, messagebox, Menu, TclError, PhotoImage
from tkinter.ttk import Frame, Label, Entry, Button, Checkbutton, Treeview, Notebook
from threading import Thread
from diskcache import Cache
if __name__ == '__main__':
root = Tk()
root.title('FamilySearch to GEDCOM')
- root.iconbitmap('fstogedcom.ico')
+ root.iconphoto(True, PhotoImage(file='fstogedcom.png'))
fstogedcom = FStoGEDCOM(root)
fstogedcom.mainloop()