Python wrapper for clearcheckbook
various small fixes and remove print()
release version 1.0.0a

heads

tip
browse log

clone

read-only
https://hg.sr.ht/~ocurero/python-ccb
read/write
ssh://hg@hg.sr.ht/~ocurero/python-ccb

#Python wrapper for ClearCheckBook

Project Status: Active – The project has reached a stable, usable state and is being actively developed. builds.sr.ht status readthedocs

This package provides a simple python interface for interacting with ClearCheckBook

#Quickstart

Using python-ccb is very simple:

import python_ccb

    session = python_ccb.ClearCheckBook('user', 'passwd')
    account = session.get_account('My Account')
    new_tran = python_ccb.Transaction('Something', 50, python_ccb.WITHDRAW, account=account)
    session.insert_transaction(new_tran)

#What's implemented?

Feature Implemented?
Accounts YES
Account groups NO
Bills NO
Budgets NO
Categories YES
Currencies YES
Object count NO
Premium NO
Transactions YES
Reminders NO
Reports NO