KeoH / django-ibanfield

Django App: Field for IBAN accounts and validation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django IBAN Field

Build Status Coverage Status

IBANField is an extension for django CharField with special validation for IBAN accounts.

Install

You can install django-ibanfield with pip as usual o pipenv

    $> pip install django-ibanfield
    $> pipenv install django-ibanfield

Usage

Use IBANField on your models, like any other django models fields.

    from django_ibanfield.fields import IBANField

    class MyModel(models.Model):

        account = IBANField()

About

Django App: Field for IBAN accounts and validation

License:GNU General Public License v3.0


Languages

Language:Python 91.4%Language:Makefile 8.6%