Metadata-Version: 2.1
Name: gencedula
Version: 0.1
Summary: Python3 module to generate random and verify uruguay identification document.
Home-page: https://github.com/carlosplanchon/gencedula
Author: Carlos A. Planchón
Author-email: bubbledoloresuruguay2@gmail.com
License: GPL3
Download-URL: https://github.com/carlosplanchon/gencedula/archive/v0.1.tar.gz
Description: # generatecedula
        *Python3 module to generate random and verify
        uruguay identification document.*
        
        ## Installation
        ### Install with pip
        ```
        pip3 install -U generatecedula
        ```
        
        ## Usage
        ```
        In [1]: import gencedula
        
        In [2]: for x in range(10):
        	print(
        		gencedula.generate_cedula(
        			start=4_000_000,
        			stop=5_000_000,
        			step=200
        			)
        		)
        46308006
        47486005
        49378000
        41064007
        40756005
        45282003
        47958004
        44844000
        41564007
        49684003
        ```
        
Keywords: verify,generate,uruguay,identification,document,cedula
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
