nomiden.reader

Module Contents

Classes

NIK

A class to represent personal ID number, NIK (Nomor Induk Kependudukan).

KK

A class to represent family ID number, KK (Kartu Keluarga).

class nomiden.reader.NIK(idnum: str | int)[source]

A class to represent personal ID number, NIK (Nomor Induk Kependudukan).

Parameters:

idnum (int or str) – personal ID number (NIK)

province

province of the NIK holder

Type:

str

city

city of the NIK holder

Type:

str

gender

gender of the NIK holder

Type:

str

birthdate

date of birth (date of the month) of the NIK holder

Type:

int, 1 to 31

birthmonth

month of birth of the NIK holder

Type:

int, 1 to 12

birthyear

year of birth of the NIK holder

Type:

int

birthdtm

complete day of birth (datetime64 format) of the NIK holder

Type:

datetime64

birthday

complete day of birth (str format) of the NIK holder

Type:

str

age

age of the NIK holder

Type:

int

nth_person

NIK registration order number

Type:

int

all_info

complete information of the NIK holder in dict format

Type:

dict

class nomiden.reader.KK(idnum: str | int)[source]

A class to represent family ID number, KK (Kartu Keluarga).

Parameters:

idnum (int or str) – family ID number (KK)

province

province of the family based on KK registered

Type:

str

city

city of the family based on KK registered

Type:

str

regdate

date of registration (date of the month) of KK

Type:

int, 1 to 31

regmonth

month of registration of KK

Type:

int, 1 to 12

regyear

year of registration of KK

Type:

int

regdtm

complete day of registration (datetime64 format) of KK

Type:

datetime64

regday

complete day of registration (str format) of KK

Type:

str

nth_pub

KK registration order number

Type:

int

all_info

complete information of KK in dict format

Type:

dict