Skip to content

jojoee/pythaiid

Repository files navigation

pythaiid

CI and CD PyPI version fury.io License: MIT codecov

Fastest Thai Nationality ID verify and random

Installation

pip install pythaiid

Usage

from pythaiid import thaiid

thaiid.random()  # "3629525599913"
thaiid.random()  # "9065089544709"

thaiid.verify('1915197333804')  # True
thaiid.verify('1201131963762')  # False

Development

# Conda env
conda create --name pythaiid python=3.10.4
conda activate pythaiid
pip install -r requirements-dev.txt
python -m flake8 --ignore=E501,F401 pythaiid tests
python -m pytest tests --cov=./ --cov-report=xml

Other languages