Skip to main content

Configurable Table Loader package for python

Project description

ConTabLo

License

Description

ConTabLo is a python package providing a Configurable Table Loader.

With ConTabLo, it is possible to define import configurations for a number of different CSV file formats with the goal to import them into a defined table format, with defined data types for each column. Given a number of configurations, each CSV file can be matched to its configuration via meta data like delimiter, file format and column headers.

A CLI tool is provided that can automatically generate configuration files templates from a number of CSV files. These templates can be edited to get a working configuration. Additionally, a json-schema can created from a configuration file to support editing the configurations.

Installation

ConTabLo can be installed from the Python Package Index:

python3 -m pip install contablo

Usage

Used as a command line tool, ConTabLo provides the following functionality:

$ contablo -h
Usage: contablo [OPTIONS] COMMAND [ARGS]...

  CLI tool to the ConTabLo python package.

Options:
  -v, --verbose
  -h, --help     Show this message and exit.

Commands:
  convert         Load the given CSV file(s) based on their...
  mk-import-tmpl  Create an input configuration template for the given...
  mk-schema       Create a JSON schema for validation of JSON based...

Example

Create an import template from a number of CSV files

Any application that uses ConTabLo would probably have a good idea on the composition of the table, data should be imported into. This idea can be expressed by creating a list of FieldSpec objects (or rather objects of classes that follow the FieldSpec protocol). Since the commandlinetool contablo is rather generic, it provides a way to initialize this table specification from a simple JSON file like the following:

[
    { "name": "date", "type": "date", "help": "Date of payment" },
    { "name": "payee","type": "string", "help": "Person or institution sending or receiving the payment" },
    { "name": "note", "type": "string", "help": "Transaction notes" },
    { "name": "iban", "type": "string", "help": "Payee IBAN" },
    { "name": "bic", "type": "string", "help": "Payee BIC, if applicable" },
    { "name": "amount", "type": "number", "help": "Payment amount" },
    { "name": "balance", "type": "number", "help": "New account balance" }
]

With this, we can create an import template from a number of CSV files that already contains hints for possible target fields:

$ contablo mk-import-tmpl -t fieldspec-banking.json banking*.csv -o bank-tmpl
Found 1 distict file formats:
  # 1: 2 files, iso-8859-1 encoded, with 1 chunks.
       # 1: 5 columns, 87 samples
            Datum;Name;Text;Betrag (EUR);Saldo (EUR)
            30.10.2024;"Some random payee Inc.";"SEPA-Basislasts [..] 24 Kunden-Referenz: xxxyyyzzz";"-217,50";"539,11"
  Template was written to bank-tmpl-20241103_165348-01.json

The resulting template now contains specifications for each of the five columns, e.g.:

{
  "columns": [
    {
      "label": "Datum",
      "field": "date",
      "format": "dd.mm.yyyy"
    },
    {
      "label": "Name",
      "field": "payee|note|iban|bic",
      "format": "",
      "samples": [
        "Some random payee Inc.",
        "Another random payee Inc.",
        "Someone completely different"
      ]
    },
    {
      "label": "Text",
      "field": "payee|note|iban|bic",
      "format": "",
      "samples": [
        "Note 1",
        "Note 2"
      ]
    },
    {
      "label": "Betrag (EUR)",
      "field": "amount|balance",
      "format": "-1.000,00"
    },
    {
      "label": "Saldo (EUR)",
      "field": "amount|balance",
      "format": "1.000,00"
    }
  ]
}

Each "field" entry contains suggestions for target fields to choose from, depending on the type of input (again, see subclasses of FieldSpec for builtin types).

The same template after a manual cleaup results in an import specification:

{
  "columns": [
    {
      "label": "Datum",
      "field": "date",
      "format": "dd.mm.yyyy"
    },
    {
      "label": "Name",
      "field": "payee"
    },
    {
      "label": "Text",
      "field": "note"
    },
    {
      "label": "Betrag (EUR)",
      "field": "amount",
      "format": "-1.000,00"
    },
    {
      "label": "Saldo (EUR)",
      "field": "balance",
      "format": "1.000,00"
    }
  ]
}

Note, how the sample and empty format elements were removed and the field entries were reduced to the desired target field name. The labels must stay unchanged, they are an essential identification marker matching a CSV import file to the appropriate import configuration. Since it is no longer a template, we rename it to a more appropriate name, e.g. bank-import-config.json.

We are now ready to convert the type of CSV files described by the import specification:

$ contablo convert -t fieldspec-banking.json -c bank-import-config.json banking-*.csv -o merged_data.csv

Contributing

If you want to contribute to this project, please use the following steps:

  1. Fork the project.
  2. Create a new branch (git checkout -b feature/awesome-feature).
  3. Commit your changes (git commit -m 'Add some feature').
  4. Push to the branch (git push origin feature/awesome-feature).
  5. Open a pull request.

Commit Message Structure

This projects aims to follow the Conventional Commits guidelines.

When writing commit messages, use one of the following categories to clearly describe the purpose of your commit:

  • feat / feature: ✨ Introducing new features
  • fix / bugfix: 🐛 Addressing bug fixes
  • perf: 🚀 Enhancing performance
  • refactor: 🔄 Refactoring code - Not displayed in CHANGELOG
  • test / tests: ✅ Adding or updating tests - Not displayed in CHANGELOG
  • build / ci: 🛠️ Build system or CI/CD updates - Not displayed in CHANGELOG
  • doc / docs: 📚 Documentation changes - Not displayed in CHANGELOG
  • style: 🎨 Code style or formatting changes - Not displayed in CHANGELOG
  • chore: 🔧 Miscellaneous chores
  • other: 🌟 Other significant changes

Example Commit Messages

  • feat: Add cool new feature
  • fix: Resolve unexpected behavior with translation

License

This project is licensed under the MIT License.

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

contablo-0.1.1.tar.gz (26.5 kB view details)

Uploaded Source

Built Distribution

contablo-0.1.1-py3-none-any.whl (29.6 kB view details)

Uploaded Python 3

File details

Details for the file contablo-0.1.1.tar.gz.

File metadata

  • Download URL: contablo-0.1.1.tar.gz
  • Upload date:
  • Size: 26.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for contablo-0.1.1.tar.gz
Algorithm Hash digest
SHA256 be43ca5be944dcd6e55281c48fed707b8d4874be283be5cbc52142c517b322f8
MD5 9286452a936fcce5d1675a2b47157640
BLAKE2b-256 39418a1c27583d474b4810010495bc2760791fe358f4b2b801b577cfcba2d24c

See more details on using hashes here.

Provenance

The following attestation bundles were made for contablo-0.1.1.tar.gz:

Publisher: release.yaml on gandy92/contablo

Attestations:

File details

Details for the file contablo-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: contablo-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for contablo-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a86288645ea4b4eccb43dfc1e0ee6281770fcaecdf1d0297333e9d9af0fe1be8
MD5 6553dfe3c59edb309cd314dc655beb2d
BLAKE2b-256 1f958b01089555dbb595fbaa2eb6d4493254b069035d274db5d1d94f40eb1895

See more details on using hashes here.

Provenance

The following attestation bundles were made for contablo-0.1.1-py3-none-any.whl:

Publisher: release.yaml on gandy92/contablo

Attestations:

Supported by

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