Skip to main content

Parsing and validation utilites for the Spanish standard norm 43 by the 'Consejo Superior Bancario' (CSB) / 'Asociación Española de Banca' (AEB) for storing bank account transactions | [es] Herramientas para leer y validar datos almacenados siguiendo la norma 43 del Consejo Superior Bancario (CSB) / Asociación Española de Banca (CSB).

Project description

csb43

docs latest

Tools for converting from the Spanish banks' format CSB norm 43 (CSB43).

csb2format

Convert a CSB/AEB norm 43 file to other file formats.

Supported formats:

Additional formats are optionally provided by tablib:

  • HTML
  • ODS: OpenDocument spreadsheet
  • CSV, TSV: comma- or tab- separated values
  • XLS: Microsoft Excel spreadsheet
  • XLSX: OOXML spreadsheet

For an exhaustive list, see package tablib.

Options:

usage: csb2format [-h] [-v] [-s] [--no-sepa] [-df] [-d DECIMAL] [-e ENCODING] [--use-float] [-V]
                [-f {csv,dbf,homebank,html,jira,json,latex,ods,ofx,ofx1,rst,tsv,xls,xlsx,yaml}] [-E OUTPUT_ENCODING]
                csb_file converted_file

Convert a CSB43 file to another format

options:
-h, --help            show this help message and exit
-v, --version         show program's version number and exit

csb43 arguments:
csb_file              a csb43 file ('-' for stdin)
-s, --strict          strict mode (default: False)
--no-sepa             do not convert items to SEPA transfers or direct debits (default: True)
-df, --dayfirst       use DDMMYY as date format while parsing the csb43 file instead of YYMMDD (default: True)
-d DECIMAL, --decimal DECIMAL
                        set the number of decimal places for the money amount type (default: 2)
-e ENCODING, --encoding ENCODING
                        set the input encoding ('cp850' for standard AEB file) (default: latin1)
--use-float           export monetary amounts using binary floating point numbers as a fallback (default: str)
-V, --verbose         show csb43 warnings (default: True)

output arguments:
converted_file        destination file ('-' for stdout)
-f {csv,dbf,homebank,html,jira,json,latex,ods,ofx,ofx1,rst,tsv,xls,xlsx,yaml}, --format {csv,dbf,homebank,html,jira,json,latex,ods,ofx,ofx1,rst,tsv,xls,xlsx,yaml}
                        format of the output file (default: ofx)
-E OUTPUT_ENCODING, --output-encoding OUTPUT_ENCODING
                        set the output encoding (default: utf-8)

Examples

  • Converting to OFX format:

      $ csb2format transactions.csb transactions.ofx
    
      $ csb2format --format ofx transactions.csb transactions.ofx
    

    or

      $ csb2format transactions.csb - > transactions.ofx
    

    From another app to file

      $ get_my_CSB_transactions | csb2format - transactions.ofx
    
  • Converting to XLSX spreadsheet format:

      $ csb2format --format xlsx transactions.csb transactions.xlsx
    
  • Using cp850 as the input encoding:

      $ csb2format --encoding cp850 --format xlsx transactions.csb transactions.xlsx
    

Spreadsheets

ODS, XLS and XLSX files are generated as books, with the first sheet containing the accounts information, and the subsequent sheets containing the transactions of each one of the accounts.

Using Python

Parse a CSB43 file and print the equivalent OFX file

# OFX
from csb43.ofx import converter as ofx_converter
from csb43.aeb43 import read_batch

with open("movimientos.csb", "rb") as fd:
    batch = read_batch(fd)

# print to stdout
print(ofx_converter.convert_from_aeb43(batch))

Parse a CSB43 file and print the equivalent in a tabular or dictionary-like file format

from csb43 import read_batch, formats

with open("movimientos.csb", "rb") as fd:
    batch = read_batch(fd)

# print 'yaml' format to stdout
o = formats.convert_from_aeb43(batch, 'yaml')
print(o.yaml)

# write 'xlsx' format to file
o = formats.convert_from_aeb43(batch, 'xlsx')
with open("movimientos.xlsx", "wb") as f:
    f.write(o.xlsx)

Build an AEB43 with a custom context:

import dataclasses
from csb43 import read_batch, get_current_context

# custom context
ctx = dataclasses.replace(get_current_context(), strict=True)
with open("movimientos.csb", "rb") as fd:
    batch = read_batch(fd, context=context)

# scoped context
with get_current_context().scoped(strict=True):
    with open("movimientos.csb", "rb") as fd:
        batch = read_batch(fd)

Installing

Basic functionality (conversion to json, homebank and OFX)

$ pip install csb43

Conversion to YAML

$ pip install csb43[yaml]

Conversion to basic Tablib formats

$ pip install csb43[basic_formats]

Conversion to all Tablib formats

$ pip install csb43[formats]

Conversion to all supported formats

$ pip install csb43[all]

Changelog

1.1.0

  • Strict Mypy type hints.
  • Moved repository to Gitlab.
  • CI/CD pipeline re-done (3.8 to 3.13 + pypy; test CLI without optional dependencies; test OFX 2 validation).

1.0.0

  • Removed code marked as deprecated in version 0.10.0.
  • Fall back to numerical currency code if no letter_3 code is found by pycountry.
  • Add table of historical ISO-4217 currency codes, needed to support Spanish records that have not been converted from Peseta to Euro.
  • Fix: arguments passed to a record constructor were not applied to the bytes representation.
  • Fail or warn if a floating-point number cannot be properly represented as a fixed-point number.

0.10.1

  • Allow records with different sizes due to a wrong number of spaces

0.10.0

  • BREAKING CHANGES!
  • Dropped support for python < 3.8. If you need support for old versions, please do not upgrade.
  • New subpackage csb43.aeb43: CSB43 reimplemented using field descriptors:
    • the original binary record is kept as the internal representation
    • consistent behaviour for field types (money, currency, int, string, etc...)
    • validation failures will raise ValidationException o ValidationWarning depending of their gravity
    • parsing of SEPA transfers and SEPA direct debits information stored in optional items in transactions.
  • Subpackage csb43.csb43 has been deprecated and it will be removed in a future version (and every package object that use it).
  • Classes and functions using camel case have been deprecated and they will be removed in a future version.
  • Moved package settings from setup.py to pyproject.toml
  • Updated dependencies.

0.9.3

  • Add support for Python 3.12 (thanks to Cédric Krier)

0.9.2

  • Fixed setuptool's deprecation warning on python==3.10 (thanks to @mb)
  • Fixed duplicated documentation of the same objects by sphinx (thanks to @mb)

0.9.1

  • Added python_requires >= 3.6 (thanks to Cédric Krier)

0.9.0

  • Dropped support for Python 2 (thanks to Sergi Almacellas)
  • Added support for Python 3.8 and 3.9 (thanks to Sergi Almacellas)
  • Added compatibility with tablib >= 1.0.0 (thanks to Sergi Almacellas)
  • Type hinting

0.8.4

  • Fixed tablib requirement (< 1.0.0)
  • Fixed parsing of records with code 00 (thanks to Uttam Sharma)

0.8.2

  • Do not fail with C locale (thanks to Cédric Krier)

0.8.1

  • Fixed decimal values conversion in JSON and tabular formats (thanks to Harshad Modi).
  • Fixed OFX validation (ORIGCURRENCY field).
  • An error is raised when the currency code is not found.

0.8

  • Text values are stored as string instead of bytes (thanks to Sergi Almacellas)
  • Warnings are raised using the 'warnings' module.
  • An encoding where control characters are different from ascii is not allowed. An exception will be raised.
  • csb2format: added encoding as a new parameter.

0.7

  • Defined installation targets: yaml and formats (thanks to Sergi Almacellas & Cédric Krier).
  • Updated README file (thanks to Sergi Almacellas).
  • Removed simplejson dependency.
  • Dates stored as date instead of datetime (thanks to Sergi Almacellas).
  • Monetary amounts are represented as Decimal instead to float in order to prevent representation and rounding issues. These fields are exported as a string by default, conversion to float is optional (thanks to Sergi Almacellas & Cédric Krier).
  • Added temprary dependency to openpyxl < 2.5.0 to prevent issue while trying to export to xlsx.

0.6

  • Fixed usage of pycountry >= 16.10.23rc1 objects (thanks to Alex Barcelo).
  • Package refactored to simplify the structure.

0.5

  • Fixed conversion to binary formats in python 2.
  • tablib backend supported in python 3.
  • N43 warnings are silenced by default.

0.4

  • OFX v 1.0.3 supported.
  • OFX Tag inv401source renamed to inv401ksource.
  • Unique transaction id when generating OFX file (thanks to Julien Moutte).

0.3.4

  • Most Spanish N43 files will use LATIN-1 encoding not pure ASCII (thanks to Julien Moutte).
  • Regular expression to check for account name is too limited (thanks to Julien Moutte).
  • Reference1 can hold non numerical data in information mode 1 and 2 (thanks to Julien Moutte).
  • Currency data as an inmutable list.

0.3.3

  • Fixed deficiencies in OFX conversion (thanks to Andrea Santambrogio). Checked XML validation against OFX2_Protocol.xsd

0.3

  • Compatible with Python 3 (except "tablib" dependencies)

0.2.3

  • Fixed shebang header of csb2format

0.2.2

  • csb2format adapted to pyinstaller
  • Executable file for Windows

0.2.1

  • Trivial changes

0.2

  • Several bugfixes
  • Bidirectional use of objects (file -> object, object -> file)
  • Added conversion to spreadsheets, dict and tabular formats (thanks to tablib)
  • Localization to Spanish
  • Sphinx documentation

0.1

  • Initial release

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

csb43-1.1.0.tar.gz (106.0 kB view details)

Uploaded Source

Built Distribution

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

csb43-1.1.0-py3-none-any.whl (114.1 kB view details)

Uploaded Python 3

File details

Details for the file csb43-1.1.0.tar.gz.

File metadata

  • Download URL: csb43-1.1.0.tar.gz
  • Upload date:
  • Size: 106.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for csb43-1.1.0.tar.gz
Algorithm Hash digest
SHA256 d30e3e21e1bd0328592b792b254cb0c94054232470d44b2629a944010186f41c
MD5 73684451f09f2a3923eda2a079f25ca9
BLAKE2b-256 841d0d302629c1069aa697919e4a4c537dcf3aaf6157fa48a96891f0506f987b

See more details on using hashes here.

File details

Details for the file csb43-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: csb43-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 114.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for csb43-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 92a6a154cd3ed87e2099ae57a0d5d02844474c2f26d82cb8c822d9e93b758f5e
MD5 ec9602b34b03f6f47801c08e80d70bee
BLAKE2b-256 d5490327f13cb58d6df5ea3cf3336471d15c3c9677d59fd4df623c9d9d083d6a

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