dartcash 1.1.0 copy "dartcash: ^1.1.0" to clipboard
dartcash: ^1.1.0 copied to clipboard

outdated

Dartlang implementation of GNUCash sqlite format file support.

Pure dart implementation of GNUCash sqlite format file support.

Offers read-only access to the contents of a file in the GNUCash sqlite format. The following operations are supported:

  • List of accounts including current balances in both the account commodity and base currency.
  • List details of splits and transactions belonging to an account

API example:

    GncBook gncBook = new GncBook();
    await gncBook.open("Accounts.gnucash");

    for (final account in gncBook.accounts()) {
      print("${account.name}: ${account.quantity} -> ${account.get_balance()}");
    }
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Dartlang implementation of GNUCash sqlite format file support.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

intl, moor, moor_ffi

More

Packages that depend on dartcash