miglen / egn

Python package for validating, parsing and generating unique citizenship numbers in Bulgaria EGN (ЕГН).

Home Page:https://pypi.python.org/pypi/egn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

egn

Python package for validating, parsing and generating unique citizenship numbers in Bulgaria EGN (ЕГН).

Български: Скрипт за проверка и генериране на ЕГН / Програма за проверка и генериране на единни граждански номера.

PyPI package

image

Documentation Status

image

image

Installation

Install the package with pypi.

$ pip install egn

Usage

Use it as command line or python package. Here are the options:

Python package

import egn

# Validate
egn.validate(123123123)
>>> 123123123 is invalid!

# Parsing
egn.parse(1234567890)
>>> ....

# Generating
egn.generate()
>>> ....

# Generating with options
egn_options = {'year': 1999, 'month': 3, 'day': 3, 'region': 'Sofia', 'gender': 'm'}
egn.generate(egn_options)
>>> ....

Command line

Invoke the package with simply typing egn:

$ egn

Which will print the help message. Here are the most common commands:

# Validate
$ egn 1234567890

# Parse
$ egn -p 1234567890

# Generate
$ egn -g # random without options
$ egn -g -y 1999 -m 3 -d 3 -r Sofia -s male # with options

to-do

  • First step: validation

About

Python package for validating, parsing and generating unique citizenship numbers in Bulgaria EGN (ЕГН).

https://pypi.python.org/pypi/egn

License:GNU General Public License v3.0


Languages

Language:Python 100.0%