mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
It is split into - /libgnucash (for the non-gui bits) - /gnucash (for the gui) - /common (misc source files used by both) - /bindings (currently only holds python bindings) This is the first step in restructuring the code. It will need much more fine tuning later on.
12 lines
435 B
Python
12 lines
435 B
Python
# import all the symbols from gnucash_core, so basic gnucash stuff can be
|
|
# loaded with:
|
|
# >>> from gnucash import thingy
|
|
# instead of
|
|
# >>> from gnucash.gnucash_core import thingy
|
|
from gnucash_core import *
|
|
## @file
|
|
# @brief helper file for the importing of gnucash
|
|
# @author Mark Jenkins, ParIT Worker Co-operative <mark@parit.ca>
|
|
# @author Jeff Green, ParIT Worker Co-operative <jeff@parit.ca>
|
|
# @ingroup python_bindings
|