Skip to main content

The simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to inject and generate transactions

Project description

beanhub-extract CircleCI

The simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to ingest and generate transactions

Note: This project is still in early stage, still subject to rapid major changes

Why?

Have you ever wondered why each of us has to write our own different Beancount importers for the same bank again and again? Why we cannot use the same exporter for the same bank CSV file? One of the biggest problems of the original Beancount importer design is that the transaction generation logic is coupled with the extract logic, making it hard to reuse. We are addressing the problem by creating a library only for extracting bank-exported CSV files into standardized transaction structures to be processed later. Ideally, you should be able to import this library and use it to import standardized transactions from CSV files exported from any bank in the world.

Install

pip install beanhub-extract

Example

Extracting transactions from the CSV file is easy. Simply create the extractor class and make a function call on the instance object, which will return a transaction object generator. Like this:

from beanhub_extract.extractors.mercury import MercuryExtractor

with open("/path/to/my-mercury.csv", "rt") as fo:
    extractor = MercuryExtractor(fo)
    for txn in extractor():
        print(txn)
        # process your transaction here

Sponsor

BeanHub logo

A modern accounting book service based on the most popular open source version control system Git and text-based double entry accounting book software Beancount.

Transaction data object

We defined a standardized transaction data object to accommodate a transaction statement's most commonly used columns. The data object type is a simple immutable Python dataclasses.dataclass class. It's defined in the beanhub_extract/data_types.py file.

Supported Formats

Currently, we only support a few banks for our own benefit. If you find any particular bank CSV file or format missing and want this library to support it, please feel free to open a PR.

Mercury - mercury

To export the CSV file, please visit the Transactions page and click "Add Filter" to limit the time range of your export, then click the "Export All" button on the right-hand side.

Chase

Chase Credit Card - chase_credit_card

To export the Chase Credit Card CSV file, please visit and login the Chase website. Expand the credit card details by clicking on the card you would like to export. Click the "Download account activity" button on the right hand side of the Account activity section. Click the "Download" button after you select the activity time range to "Year to date".

CSV - csv

In many cases, you have your own tools extracting transaction data into CSV files. Without implementing your own beanhub-extract extractor, you won't be able to ingest the data with beanhub-import. To make it much easier for cases like this, we also provide the csv extractor. With that, you can extract transactions into this standard CSV file as long as the fields name are defined in the Transaction dataclass. Only the following metadata fields are not supported (as they will be generated and assigned by the extractor):

  • extractor
  • file
  • lineno
  • reversed_lineno

There are a few fields with non-string types, their format are defined as below:

Date

The date and post_date should be in YYYY-MM-DD format.

Datetime

The timestamp should be in iso8601 format.

Bool

The pending field should be either ture or false (case-insensitive)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

beanhub_extract-0.1.6.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

beanhub_extract-0.1.6-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

File details

Details for the file beanhub_extract-0.1.6.tar.gz.

File metadata

  • Download URL: beanhub_extract-0.1.6.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.16

File hashes

Hashes for beanhub_extract-0.1.6.tar.gz
Algorithm Hash digest
SHA256 f9488cd5bee3c19ee2330d2ac8073002bd11128519b983233b24d1c398fa72f8
MD5 091394908435b0566298235ba584bb8a
BLAKE2b-256 1aa2603296ed3d7dec6c86f4608663bd212deda64f46b7788d9f19ebb5303d6d

See more details on using hashes here.

File details

Details for the file beanhub_extract-0.1.6-py3-none-any.whl.

File metadata

File hashes

Hashes for beanhub_extract-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 8619194592a4ff09f0cc971fdd33aa4d4e7a7249ea35108aa1fc1cc9b1a56f59
MD5 df538b182966d759edc34895e67a7c85
BLAKE2b-256 b3f7da670711985b8b6ae63ca82e6af091ede68633e730401396db09305bfe81

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page