kontocheck


Namekontocheck JSON
Version 6.14.2 PyPI version JSON
download
home_pagehttp://www.joonis.de/software/fintech/kontocheck
SummaryPython ctypes wrapper of the konto_check library.
upload_time2023-03-24 09:28:43
maintainer
docs_urlNone
authorThimo Kraemer
requires_python
licenseLGPLv3
keywords kontocheck iban bic scl
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            kontocheck
==========

Python ctypes wrapper of the konto_check library.

This module is based on konto_check_, a small library to check German
bank accounts. It implements all check methods and IBAN generation
rules, published by the German Central Bank.

In addition it provides access to the SCL Directory and the possibility
to verify VAT-IDs by the German Federal Central Tax Office.

.. _konto_check: http://kontocheck.sourceforge.net


Example
-------

.. sourcecode:: python
    
    import kontocheck
    kontocheck.lut_load()
    bankname = kontocheck.get_name('37040044')
    iban = kontocheck.create_iban('37040044', '532013000')
    kontocheck.check_iban(iban)
    bic = kontocheck.get_bic(iban)
    bankname = kontocheck.scl_get_bankname('VBOEATWW')


Changelog
---------

v6.14.2
    - Updated the LUT data file

v6.14.1
    - Updated the LUT data file

v6.14.0
    - Updated the konto_check library to version 6.14
    - Updated the LUT data file

v6.13.2
    - Added VAT-ID check of the European Commission

v6.13.1
    - Updated the konto_check library to version 6.13
    - Now uses the SCL Directory implemented in konto_check.
    - Updated the LUT data file

v6.11.2
    - Updated the LUT data file
    - Updated the SCL Directory

v6.11.1
    - Updated the LUT data file
    - Updated the SCL Directory

v6.11.0
    - Updated the konto_check library to version 6.11
    - Updated the LUT data file
    - Updated the SCL Directory
    - Fixed minor bug in *get_bic* when called with bankcodes.

v6.10.0
    - Updated the konto_check library to version 6.10
    - Updated the LUT data file
    - Updated the SCL Directory
    - Fixed bug of *check_iban* running into a segfault with long account numbers.
    - Made *get_bic* to accept bankcodes in addition to IBANs.

v6.08.1
    - Updated the LUT data file

v6.08.0
    - Updated the konto_check library to version 6.08
    - Updated the LUT data file
    - Updated the SCL Directory

v6.05.0
    - Updated the konto_check library to version 6.05
    - Updated the LUT data file
    - Updated the SCL Directory

v6.02.0
    - Updated the konto_check library to version 6.02
    - Updated the LUT data file
    - Updated the SCL Directory

v6.01.0
    - Updated the konto_check library to version 6.01
    - Updated the LUT data file
    - Updated the SCL Directory
    - Replaced SCL Sqlite database with plain CSV file

v5.10.0
    - Updated the konto_check library to version 5.10
    - Updated the LUT data file
    - Updated the SCL Directory

v5.9.0
    - Updated the konto_check library to version 5.9
    - Updated the LUT data file
    - Updated the SCL Directory

v5.8.2
    - Updated the LUT data file
    - Updated the SCL Directory

v5.8.1
    - Updated the LUT data file
    - Updated the SCL Directory

v5.8.0
    - Updated the konto_check library to version 5.8
    - Updated the LUT data file
    - Updated the SCL Directory

v5.7.0
    - Updated the konto_check library to version 5.7
    - Updated the SCL Directory

v5.5.11
    - Updated the LUT data file
    - Updated the SCL Directory

v5.5.10
    - Made the package Py2/3 compatible.
    - Now textual return values are always unicode strings.

v5.5.6
    - Bug fix querying the SCL Directory

v5.5.5
    - Updated the LUT data file
    - Updated the SCL Directory

v5.5.4
    - Fixed a bug in setup.py

v5.5.3
    - Normalized BIC in scl_* functions

v5.5.2
    - Added the SCL Directory, published by the German Central Bank
    - Added some functions to query the SCL Directory.
    - Added functionality to check VAT-IDs for validity.

v5.5.1
    - Minor bug fixes
    
v5.5.0
    - Updated the konto_check library to version 5.5
    - Fixed a bug on Windows using the wrong MSVCRT version.

v5.4.2
    - Updated the LUT data file since it contained an invalid BIC

v5.4.1
    - Fixed a bug on Windows systems, failed to load msvcrt

v5.4.0
    - Updated the konto_check library to version 5.4

v5.3.0
    - Updated the konto_check library to version 5.3
    - Fixed a bug in function get_name that did not recognize an IBAN.

v5.2.1
    - Replaced Cython with ctypes, since it is easier to maintain for different plattforms.
            

Raw data

            {
    "_id": null,
    "home_page": "http://www.joonis.de/software/fintech/kontocheck",
    "name": "kontocheck",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "kontocheck,iban,bic,scl",
    "author": "Thimo Kraemer",
    "author_email": "thimo.kraemer@joonis.de",
    "download_url": "https://files.pythonhosted.org/packages/af/f3/6bc729bb5e7e48627688712b97d5912a54f6f93fccdcc770d954525b41da/kontocheck-6.14.2.tar.gz",
    "platform": null,
    "description": "kontocheck\n==========\n\nPython ctypes wrapper of the konto_check library.\n\nThis module is based on konto_check_, a small library to check German\nbank accounts. It implements all check methods and IBAN generation\nrules, published by the German Central Bank.\n\nIn addition it provides access to the SCL Directory and the possibility\nto verify VAT-IDs by the German Federal Central Tax Office.\n\n.. _konto_check: http://kontocheck.sourceforge.net\n\n\nExample\n-------\n\n.. sourcecode:: python\n    \n    import kontocheck\n    kontocheck.lut_load()\n    bankname = kontocheck.get_name('37040044')\n    iban = kontocheck.create_iban('37040044', '532013000')\n    kontocheck.check_iban(iban)\n    bic = kontocheck.get_bic(iban)\n    bankname = kontocheck.scl_get_bankname('VBOEATWW')\n\n\nChangelog\n---------\n\nv6.14.2\n    - Updated the LUT data file\n\nv6.14.1\n    - Updated the LUT data file\n\nv6.14.0\n    - Updated the konto_check library to version 6.14\n    - Updated the LUT data file\n\nv6.13.2\n    - Added VAT-ID check of the European Commission\n\nv6.13.1\n    - Updated the konto_check library to version 6.13\n    - Now uses the SCL Directory implemented in konto_check.\n    - Updated the LUT data file\n\nv6.11.2\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv6.11.1\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv6.11.0\n    - Updated the konto_check library to version 6.11\n    - Updated the LUT data file\n    - Updated the SCL Directory\n    - Fixed minor bug in *get_bic* when called with bankcodes.\n\nv6.10.0\n    - Updated the konto_check library to version 6.10\n    - Updated the LUT data file\n    - Updated the SCL Directory\n    - Fixed bug of *check_iban* running into a segfault with long account numbers.\n    - Made *get_bic* to accept bankcodes in addition to IBANs.\n\nv6.08.1\n    - Updated the LUT data file\n\nv6.08.0\n    - Updated the konto_check library to version 6.08\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv6.05.0\n    - Updated the konto_check library to version 6.05\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv6.02.0\n    - Updated the konto_check library to version 6.02\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv6.01.0\n    - Updated the konto_check library to version 6.01\n    - Updated the LUT data file\n    - Updated the SCL Directory\n    - Replaced SCL Sqlite database with plain CSV file\n\nv5.10.0\n    - Updated the konto_check library to version 5.10\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.9.0\n    - Updated the konto_check library to version 5.9\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.8.2\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.8.1\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.8.0\n    - Updated the konto_check library to version 5.8\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.7.0\n    - Updated the konto_check library to version 5.7\n    - Updated the SCL Directory\n\nv5.5.11\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.5.10\n    - Made the package Py2/3 compatible.\n    - Now textual return values are always unicode strings.\n\nv5.5.6\n    - Bug fix querying the SCL Directory\n\nv5.5.5\n    - Updated the LUT data file\n    - Updated the SCL Directory\n\nv5.5.4\n    - Fixed a bug in setup.py\n\nv5.5.3\n    - Normalized BIC in scl_* functions\n\nv5.5.2\n    - Added the SCL Directory, published by the German Central Bank\n    - Added some functions to query the SCL Directory.\n    - Added functionality to check VAT-IDs for validity.\n\nv5.5.1\n    - Minor bug fixes\n    \nv5.5.0\n    - Updated the konto_check library to version 5.5\n    - Fixed a bug on Windows using the wrong MSVCRT version.\n\nv5.4.2\n    - Updated the LUT data file since it contained an invalid BIC\n\nv5.4.1\n    - Fixed a bug on Windows systems, failed to load msvcrt\n\nv5.4.0\n    - Updated the konto_check library to version 5.4\n\nv5.3.0\n    - Updated the konto_check library to version 5.3\n    - Fixed a bug in function get_name that did not recognize an IBAN.\n\nv5.2.1\n    - Replaced Cython with ctypes, since it is easier to maintain for different plattforms.",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Python ctypes wrapper of the konto_check library.",
    "version": "6.14.2",
    "split_keywords": [
        "kontocheck",
        "iban",
        "bic",
        "scl"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aff36bc729bb5e7e48627688712b97d5912a54f6f93fccdcc770d954525b41da",
                "md5": "5b2a278a9108cb5026b583cd8d527b01",
                "sha256": "ae60cdd970785737f26325f2c85c4fbc8107c14fe29b5142252b03d0f51da7e9"
            },
            "downloads": -1,
            "filename": "kontocheck-6.14.2.tar.gz",
            "has_sig": false,
            "md5_digest": "5b2a278a9108cb5026b583cd8d527b01",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1850955,
            "upload_time": "2023-03-24T09:28:43",
            "upload_time_iso_8601": "2023-03-24T09:28:43.155867Z",
            "url": "https://files.pythonhosted.org/packages/af/f3/6bc729bb5e7e48627688712b97d5912a54f6f93fccdcc770d954525b41da/kontocheck-6.14.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-24 09:28:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "kontocheck"
}
        
Elapsed time: 0.04804s