Skip to main content

Module for making and verifying KID numbers

Project description

KID util

Build Status

Development moved to PyPi package norwegian-numbers: GitHub PyPi

Simple utils to generate and verify KID numbers with either MOD10 or MOD11.

Installation

To install from PyPi as a module in your environment:

pip install kid-util

To install from source as a module in your environment:

python setup.py install

Code usage from installation

Example code usages after installation:

>>> import kid
>>> kid.make('1234')
'12344'
>>> kid.make('1234', mode='MOD11')
'12343'
>>> kid.verify('12344')
True
>>> kid.verify('12343', mode='MOD11')
True

Running from command line

Generating KID from integer string:

$ python -m kid -g 2345678
23456783
$ python -m kid -m mod11 -g 2345678
23456788

Verifying KID from string:

$ python -m kid -v 23456783
True
$ python -m kid -v 23456788
False
$ python -m kid -m mod11 -v 23456788
True
$ python -m kid -m mod11 -v 23456783
False

Testing from source

To run the tests:

python -m unittest discover

Or if you have tox:

tox

Distribution

The distribution was created by the following commands:

python setup.py sdist bdist_wheel
python -m twine upload dist/*

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

kid-util-1.0.1.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

kid_util-1.0.1-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

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