Metadata-Version: 2.1
Name: rigger
Version: 0.0.2
Summary: Generates modern random idenities, inspired by unix 'rig'
Home-page: https://github.com/cgdeboer/rigger
Author: Calvin DeBoer
Author-email: cgdeboer@gmail.com
License: UNKNOWN
Description: Rigger: (R)andom (I)dentity (G)eneration
        ========================================
        .. image:: https://travis-ci.org/cgdeboer/rigger.svg?branch=master
            :target: https://travis-ci.org/cgdeboer/rigger
        
        .. image:: https://img.shields.io/pypi/v/rigger.svg
            :target: https://pypi.org/project/rigger/
        
        Rigger is a (R)andom (I)dentity (G)enerator implemented in pure python, inspired by
        unix https://www.unix.com/man-page/debian/6/RIG/.
        
        .. image:: https://raw.githubusercontent.com/cgdeboer/rigger/master/docs/rigger.png
           :height: 150px
        
        Example Code:
        
        .. code-block:: python
        
            >>> import rigger
        
            >>> rigger.identity()
        
            >>> {'name': 'Briella Doyle',
                 'given': 'Briella',
                 'family': 'Doyle',
                 'address': '413 White Mud St',
                 'city': 'Richford',
                 'state': 'VT',
                 'zip_code': '05476',
                 'phone': '802-755-1984',
                 'email': 'bdoyle@yahoo.com'}
        
        
        How It Works
        ---------------
        Rigger provides an easy way to generate random identies that look mostly real. Cities,
        states, and zip codes are cohesive, and phone area codes are valid at the state level.
        
        Rigger officially supports Python 3.6+.
        
        Installation
        ------------
        
        To install Rigger, use `pipenv <http://pipenv.org/>`_ (or pip, or poetry, of course):
        
        .. code-block:: bash
        
            $ pipenv install rigger
        
        
        How to Contribute
        -----------------
        
        #. Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
        #. Fork `the repository`_ on GitHub to start making your changes to the **master** branch (or branch off of it).
        #. Write a test which shows that the bug was fixed or that the feature works as expected.
        #. Send a pull request. Make sure to add yourself to AUTHORS_.
        
        .. _`the repository`: https://github.com/cgdeboer/rigger
        .. _AUTHORS: https://github.com/cgdeboer/rigger/blob/master/AUTHORS.rst
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
