You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gnucash/src/optional/python-bindings/example_scripts/simple_book.py

14 lines
245 B

#!/usr/bin/env python
from gnucash import Book
book = Book()
#Call some methods that produce output to show that Book works
print "New book:"
book.print_dirty()
book.mark_saved()
print "\nBook marked saved:"
book.print_dirty()
book.destroy()