Metadata-Version: 2.1
Name: monopoly-core
Version: 0.15.0rc2
Summary: Monopoly is a Python library & CLI that converts bank statement PDFs to CSV
Home-page: https://github.com/benjamin-awd/monopoly
License: AGPL-3.0
Author: benjamin-awd
Author-email: benjamindornel@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: ocr
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: dateparser (>=1.2.0,<2.0.0)
Requires-Dist: ocrmypdf (>=16.5.0,<17.0.0) ; extra == "ocr"
Requires-Dist: pdftotext (>=2.2.2,<4.0.0)
Requires-Dist: pydantic (>=2.5.2,<3.0.0)
Requires-Dist: pydantic-settings (>=2.0.3,<3.0.0)
Requires-Dist: pymupdf (>=1.23.7,<2.0.0)
Requires-Dist: strenum (>=0.4.15,<0.5.0)
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
Requires-Dist: tqdm (>=4.66.1,<5.0.0)
Project-URL: Repository, https://github.com/benjamin-awd/monopoly
Description-Content-Type: text/markdown

<img src="https://raw.githubusercontent.com/benjamin-awd/monopoly/main/docs/logo.svg" width="396" height="91">

-----------------
[![Streamlit](https://static.streamlit.io/badges/streamlit_badge_black_white.svg)](https://monopoly.streamlit.app)
[![Tests](https://github.com/benjamin-awd/monopoly/actions/workflows/tests.yaml/badge.svg?branch=main&event=push)](https://github.com/benjamin-awd/monopoly/actions/workflows/tests.yaml)
[![CI](https://github.com/benjamin-awd/monopoly/actions/workflows/ci.yaml/badge.svg?branch=main&event=push)](https://github.com/benjamin-awd/monopoly/actions/workflows/ci.yaml)
[![License: AGPL 3.0](https://img.shields.io/badge/License-AGPL%203.0-blue)](https://opensource.org/license/agpl-v3)

Monopoly is a Python library & CLI that converts bank statement PDFs to CSV.

![](https://raw.githubusercontent.com/benjamin-awd/monopoly/main/docs/monopoly.gif)

Supported banks:
| Bank                 | Credit Statement   | Debit Statement       |
|----------------------|--------------------|-----------------------|
| Bank of America      | ✅                 | ❌                   |
| Chase                | ✅                 | ❌                   |
| Citibank             | ✅                 | ❌                   |
| DBS/POSB             | ✅                 | ✅                   |
| HSBC                 | ✅                 | ❌                   |
| Maybank              | ✅                 | ✅                   |
| OCBC                 | ✅                 | ✅                   |
| Standard Chartered   | ✅                 | ❌                   |
| Trust                | ✅                 | ❌                   |
| UOB                  | ✅                 | ✅                   |
| Zürcher Kantonalbank | ❌                 | ✅                   |

## Install
Monopoly is a pip-installable Python package on [PyPI](https://pypi.org/project/monopoly-core) under the name `monopoly-core`.

Since Monopoly uses `pdftotext`, you'll need to install additional dependencies:

```sh
apt-get install build-essential libpoppler-cpp-dev pkg-config ocrmypdf
```

or

```sh
brew install gcc@11 pkg-config poppler ocrmypdf
```

Then install with pipx:
```sh
pipx install monopoly-core
```

For additional OCR support:
```sh
pipx install 'monopoly-core[ocr]'
```

## Usage
Monopoly runs in your terminal, allowing you to extract, transform and write bank statements to a CSV file.

To list commands and options:
```sh
monopoly --help
```

You can run it on a single statement
```sh
monopoly src/monopoly/examples/example_statement.pdf
```

or multiple statements
```sh
monopoly ./statements
```

If you need to run monopoly on a password protected file, ensure that passwords are set in the .env file:
```sh
cp .env.template .env
PDF_PASSWORDS=["password1","password2"]
```

Monopoly can also be run as a Python [library](src/monopoly/examples/single_statement.py):
```bash
python3 src/monopoly/examples/single_statement.py
```

## Features
- Parses PDFs using predefined configuration classes per bank.
- Handles locked PDFs with credentials passed via environment variables.
- Supports adding OCR for image-based bank statements.
- Provides a generic parser that can be used without any predefined configuration (caveat emptor).
- Includes a safety check (enabled by default) that validates totals for debit or credit statements.

## Development

Clone the repo
```bash
git clone https://github.com/benjamin-awd/monopoly.git
```

Install dependencies using [Homebrew](https://brew.sh/)
```bash
brew install make
make setup
brew bundle
```

