Skip to main content

MyNumber (Japanese common number of social security and tax) library

Project description

JPMyNumber is Japanese common number of social security and tax (=My Number) library.

# this is valid
IndividualNumber('123456789018')

# JPMyNumberCheckDigitError
IndividualNumber('123456789019')

Installation

$ pip install JPMyNumber

Usage

Validation

from jpmynumber import IndividualNumber
from jpmynumber.exceptions import JPMyNumberLengthError, JPMyNumberCheckDigitError

try:
    IndividualNumber('123456789018')
except JPMyNumberLengthError:
    print('length error')
except JPMyNumberCheckDigitError:
    print('check digit error')

Creation

from jpmynumber import IndividualNumber

IndividualNumber.random_create()
# <jpmynumber.individual.IndividualNumber('123456789018')>

Important Point

If the first letter is ‘0’ you should use string.

# this is valid
IndividualNumber(111111111118)

# this is valid
IndividualNumber('000111111111')

# error
IndividualNumber(000111111111)

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

JPMyNumber-0.2.3.tar.gz (3.3 kB view hashes)

Uploaded Source

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