Skip to main content

A pythonic interface to GnuCash SQL documents.

Project description

Join the chat at https://gitter.im/sdementen/piecash https://travis-ci.org/sdementen/piecash.svg?branch=master https://ci.appveyor.com/api/projects/status/af7mb3pwv31i6ltv/branch/master?svg=true https://readthedocs.org/projects/piecash/badge/?version=master https://img.shields.io/pypi/v/piecash.svg https://img.shields.io/pypi/pyversions/piecash.svg https://img.shields.io/pypi/dd/piecash.svg https://requires.io/github/sdementen/piecash/requirements.svg?branch=master https://coveralls.io/repos/sdementen/piecash/badge.svg?branch=master&service=github

Piecash provides a simple and pythonic interface to GnuCash files stored in SQL (sqlite3, Postgres and MySQL).

Documentation:

http://piecash.readthedocs.org.

Gitter:

https://gitter.im/sdementen/piecash

Github:

https://github.com/sdementen/piecash

PyPI:

https://pypi.python.org/pypi/piecash

It is a pure python package, tested on python 2.7 and 3.4/3.5/3.6, that can be used as an alternative to:

  • the official python bindings (as long as no advanced book modifications and/or engine calculations are needed). This is specially useful on Windows where the official python bindings may be tricky to install or if you want to work with python 3.

  • XML parsing/reading of XML GnuCash files if you prefer python over XML/XLST manipulations.

piecash test suite runs successfully on Windows and Linux on the three supported SQL backends (sqlite3, Postgres and MySQL). piecash has also been successfully run on Android (sqlite3 backend) thanks to Kivy buildozer and python-for-android.

It allows you to:

  • open existing GnuCash documents and access all objects within

  • modify objects or add new objects (accounts, transactions, prices, …)

  • create new GnuCash documents from scratch

Scripts are also available to:

A simple example of a piecash script:

with open_book("example.gnucash") as book:
    # get default currency of book
    print( book.default_currency )  # ==> Commodity<CURRENCY:EUR>

    # iterating over all splits in all books and print the transaction description:
    for acc in book.accounts:
        for sp in acc.splits:
            print(sp.transaction.description)

The project has reached beta stage.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

piecash-0.15.0.tar.gz (3.3 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page