stdnum.kr.rrn

RRN (South Korean resident registration number).

The RRN (resident registration number, 주민등록번호) is a 13-digit number issued to all residents of the Republic of Korea. Foreigners residing in the Republic of Korea receive an alien registration number (ARN) which follows the same encoding pattern.

The first six digits code the date of birth. The seventh digit encodes the century and gender. The next four digits encode the place of birth for Koreans or the issuing agency for foreigners, followed by two digits for the community center number, one serial number and a check digit.

More information:

>>> validate('971013-9019902')
'9710139019902'
>>> validate('971013-9019903')  # incorrect checksum
Traceback (most recent call last):
    ...
InvalidChecksum: ...
stdnum.kr.rrn.calc_check_digit(number)

Calculate the check digit.

stdnum.kr.rrn.compact(number)

Convert the number to the minimal representation. This strips the number of any valid separators and removes surrounding whitespace.

stdnum.kr.rrn.format(number)

Reformat the number to the standard presentation format.

stdnum.kr.rrn.get_birth_date(number, allow_future=True)

Split the date parts from the number and return the birth date. If allow_future is False birth dates in the future are rejected.

stdnum.kr.rrn.is_valid(number, allow_future=True)

Check if the number provided is valid.

stdnum.kr.rrn.validate(number, allow_future=True)

Check if the number is a valid RNN. This checks the length, formatting and check digit. If allow_future is False birth dates in the future are rejected.