2,037
edits
Changes
From Gramps
no edit summary
Gramps supports Python 2.7+ and Python 3.2+ starting from 4.0. We advise to use python 3.2 if possible. To support both versions, some code now runs slower on python 2.x.
== Code reogranization ==
Gramps now has completed the code reorganization, making the code structure of Gramps much more cleaner.
== Python based install ==
Gramps has deprecated the use of autotools for installation, and now uses a python based installation.
python setup.py build
python setup.py install
See the INSTALL and README file for details. This means that once you installed gramps, you can use the code as a standard python module, eg:
from gramps.gen.lib.date import Date
to use the date computations as used by Gramps.
== Command Line Interface ==