Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 926 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 926 Bytes

Iranian national code generator

python script to generate all valid iranian national code by state or city name

how to use

python3 main.py -h #for help
python3 main.py -s تهران -o tehran.text
python3 main.py -s فارس

use as module

you can use ir_national_code.py as module in your python program.

 from ir_national_code import *
 result = ir_national_code() # create object
 result.return_all() #return list of all iranian national code
 result.by_state('فارس') #return list of all of 'فارس' valid national code
 result.by_citycode('001') #return list of all valid nation code start with '001' (choose code from city_codes.json file)

also you can change #DO SOMETHING line in ir_national_code.py file to do somthing with the generated national code

Tnx to fandogh and ebraminio