Metadata-Version: 2.4
Name: bankr
Version: 0.0.5
Summary: Simple Python for your Bank Accounting
Project-URL: Documentation, https://rokor.codeberg.page/bankr
Project-URL: Issues, https://codeberg.org/rokor/bankr/issues
Project-URL: Source, https://codeberg.org/rokor/bankr
Author-email: Robert Kormann <rokor@kormann.info>
License-Expression: Unlicense
License-File: LICENSE.txt
Keywords: account,accounting,bank,banking,pandas,panel
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: The Unlicense (Unlicense)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.12
Requires-Dist: click
Requires-Dist: inquirer
Requires-Dist: pandas
Requires-Dist: plotext
Requires-Dist: prettytable
Requires-Dist: pyaml
Requires-Dist: pyfiglet
Requires-Dist: python-i18n
Requires-Dist: schwifty
Description-Content-Type: text/markdown

# Bankr

[![PyPI - Version](https://img.shields.io/pypi/v/bankr.svg)](https://pypi.org/project/bankr)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/bankr.svg)](https://pypi.org/project/bankr)
[![Hatch project](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/pypa/hatch/master/docs/assets/badge/v0.json)](https://github.com/pypa/hatch)

-----

*Bankr is simple Python for your Bank Accounting to categorize your incomes and expenses*


## About

*Bankr*…

- …collects all your bank transactions on your chart of accounts using a CLI. The collection of the transactions is performed via CSV export from your bank accounts.
- …categorizes the transactions using a simple filter mechanism for repeated bookings. One-time transactions can be categorized by hand.
- …allows to add, edit and delete bank transactions by hand.
- …shows, finally, plots and statistics on the Book within the CLI or your web browser.
- …is configured via small and human-readable YAML files, which you can modify using any editor.
- …creates, hopefully, an overview over your finances.

---

***Alpha** Software*

This software is in **Alpha** state. There are a several TODOs in the source code, and some further limitations to remove for completion of its functionality! However, `v1` of the data format should be quite stable right now.

---


## Motivation

My motivation for writing these lines of Python code are two-fold:

1. Learning *Python*, *Pandas*, and – currently at basic level – *Panel* within this Python project.
2. Starting with CSV based accounting, especially after some negative experiences with trying to use an [HBCI (now FinTS)](https://en.wikipedia.org/wiki/FinTS) based accounting system. At least in Germany, banks tend to break their own HBCI accesses, especially since their most important accesses seem to be their own and individual banking apps. Fortunately, I am not aware of a bank, which does not allow a CSV based download of the respective transaction data.


## Installation

Install `python` and `pip` for your system, and do the following installation into a virtual environment `bankr`:

```console
python -m venv bankr
cd bankr
pip install bankr
```

*Bankr* includes fictional sample data in `bankr/data.sample` and a sample config file `bankr/bankr.sample.yaml`. Linking to the folder and the config file from your working directory, having the virtual environment activated, should allow to run Bankr on this sample data:

```console
ln -s <path/to/bankr/bankr.sample.yaml> bankr.yaml
ln -s <path/to/bankr/data.sample> data
```

Check the consistency of your configuration, and give it a try: `bankr stats`. If you see a big *Bankr* headline and a table of four "fantastic" bank accounts, you are in.

---

**Note** *Bankr* is tested on Linux only right now. Give it a try on BSD, Windows or Mac. I would not expect any hickups, but be prepared. You are heartily invited to provide feedback.

---


## Documentation

*Bankr* is fully documented [here](https://rokor.codeberg.page/bankr).


## License

*Bankr* is distributed under the terms of the [Unlicense](https://spdx.org/licenses/Unlicense.html) license.
