Home
Softono

Moneywiz Api

Open source MIT Python
13
Stars
7
Forks
4
Issues
2
Watchers
4 months
Last Commit

 About Moneywiz Api

A Python API to access MoneyWiz Sqlite database.

Platforms

Web Self-hosted

Languages

Python

Need Help Installing Moneywiz Api?

We provide expert installation service for this software. Our team will install, configure, and secure Moneywiz Api on your server. plans start at just $30.

Moneywiz Api

View on GitHub

MoneyWiz-API

Static Badge PyPI

Buy Me A Coffee

A Python API to access MoneyWiz Sqlite database.

Get Started

pip install moneywiz-api

from moneywiz_api import MoneywizApi

moneywizApi = MoneywizApi("<path_to_your_sqlite_file>")

(
    accessor,
    account_manager,
    payee_manager,
    category_manager,
    transaction_manager,
    investment_holding_manager,
) = (
    moneywizApi.accessor,
    moneywizApi.account_manager,
    moneywizApi.payee_manager,
    moneywizApi.category_manager,
    moneywizApi.transaction_manager,
    moneywizApi.investment_holding_manager,
)

record = accessor.get_record(record_id)
print(record)

It also offers a interactive shell moneywiz-cli.

Contribution

This project is in very early stage, all contributions are welcomed!