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 January 20th 2018.
+Current version was updated on January 31th 2018.
Examples
========
parser.print_help()
exit(2)
- for fid in args.i:
- if not re.match(r'[A-Z0-9]{4}-[A-Z0-9]{3}', fid):
- print('Invalid FamilySearch ID: ' + fid)
- exit(2)
+ if args.i:
+ for fid in args.i:
+ if not re.match(r'[A-Z0-9]{4}-[A-Z0-9]{3}', fid):
+ exit('Invalid FamilySearch ID: ' + fid)
username = args.u if args.u else input("Enter FamilySearch username: ")
password = args.p if args.p else getpass.getpass("Enter FamilySearch password: ")