piecash

1.2.1last stable release 9 months ago
Complexity Score
Medium
Open Issues
14
Dependent Projects
7
Weekly Downloadsglobal
448

License

  • MIT
    • Yesattribution
    • Permissivelinking
    • Permissivedistribution
    • Permissivemodification
    • Nopatent grant
    • Yesprivate use
    • Permissivesublicensing
    • Notrademark grant

Downloads

Readme

piecash

.. image:: https://badges.gitter.im/sdementen/piecash.svg :alt: Join the chat at https://gitter.im/sdementen/piecash :target: https://gitter.im/sdementen/piecash?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

.. image:: https://github.com/sdementen/piecash/workflows/CI/badge.svg :target: https://github.com/sdementen/piecash/actions

.. image:: https://readthedocs.org/projects/piecash/badge/?version=master :target: http://piecash.readthedocs.org

.. image:: https://img.shields.io/pypi/v/piecash.svg :target: https://pypi.python.org/pypi/piecash

.. image:: https://img.shields.io/pypi/pyversions/piecash.svg :target: https://pypi.python.org/pypi/piecash/

.. image:: https://img.shields.io/pypi/dd/piecash.svg :target: https://pypi.python.org/pypi/piecash/

.. image:: https://coveralls.io/repos/sdementen/piecash/badge.svg?branch=master&service=github :target: https://coveralls.io/github/sdementen/piecash?branch=master

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 3.6 to 3.9, 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:

  • export to ledger-cli format (http://www.ledger-cli.org/)
  • export to QIF format
  • import/export prices (CSV format)

A simple example of a piecash script:

.. code-block:: python

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.

.. important::

If you want to work with python 2.7/3.4 and books from gnucash 2.6.x series, you can use piecash 0.19.0. Versions of piecash as of 1.0.0 supports python >=3.6 and books from gnucash 3.0.x series.

.. warning::

  1. Always do a backup of your gnucash file/DB before using piecash.
  2. Test first your script by opening your file in readonly mode (which is the default mode)

Dependencies

No runtime dependency information found for this package.

CVE IssuesActive
0
Scorecards Score
3.20
Test Coverage
85.00%
Follows Semver
Yes
Github Stars
284
Dependenciestotal
0
DependenciesOutdated
0
DependenciesDeprecated
0
Threat Modelling
No
Repo Audits
No

Learn how to distribute piecash in your own private PyPI registry

pip install piecash
Processing...
Done

66 Releases

PyPI on Cloudsmith

Getting started with PyPI on Cloudsmith is fast and easy.