knowbee / py-rwavalidator

๐ŸA fast minimal package to validate Rwandan National Ids and phone numbers using Regular Expressions (Python Version)

Home Page:https://pypi.org/project/rwavalidator/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rwavalidator

Downloads Open Source Love Open Source Love

A fast minimal package to validate Rwandan National Ids and Phone Numbers(all carriers) using Regular Expressions.

Installation

The distribution is hosted on pypi at: https://pypi.org/project/rwavalidator/. To directly install the package from pypi, run from your terminal::

$ pip install rwavalidator

Usage


Validating Phone Numbers

from rwavalidator import (isPhoneNumber, isNationalId)

isPhoneNumber("0788854444"); # true
isPhoneNumber("0778854444"); # false

Validating National ID

isNationalId("1199672222000040"); # true
isNationalId("1201772222000040"); # false

About

๐ŸA fast minimal package to validate Rwandan National Ids and phone numbers using Regular Expressions (Python Version)

https://pypi.org/project/rwavalidator/

License:MIT License


Languages

Language:Python 100.0%