An open API service indexing awesome lists of open source software.

https://github.com/ileodo/moneywiz-api

A Python API to access MoneyWiz Sqlite database.
https://github.com/ileodo/moneywiz-api

api moneywiz personal-finance python

Last synced: 2 months ago
JSON representation

A Python API to access MoneyWiz Sqlite database.

Awesome Lists containing this project

README

          

# MoneyWiz-API

![Static Badge](https://img.shields.io/badge/Python-3-blue?style=flat&logo=Python)
![PyPI](https://img.shields.io/pypi/v/moneywiz-api)

Buy Me A Coffee

A Python API to access MoneyWiz Sqlite database.

## Get Started

```bash
pip install moneywiz-api
```

```python

from moneywiz_api import MoneywizApi

moneywizApi = MoneywizApi("")

(
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!