Metadata-Version: 1.1
Name: data-bench-faker
Version: 0.1.0
Summary: Data Bench Provider for the Faker Python package.
Home-page: https://github.com/ErikOShaughnessy/data-bench-faker
Author: Erik O'Shaughnessy
Author-email: erik.oshaughnessy@intel.com
License: Apache License, Version 2.0
Description-Content-Type: UNKNOWN
Description: Data Bench Faker
        ================
        
         |pypi| |license|
        
        **data_bench_faker** is a provider for the `Faker`_ Python package
        which creates stable, scalable data for the `Data Bench`_ benchmark.
        
        Install
        -------
        
        Install with pip:
        
        .. code:: bash
        	  
         $ pip install data_bench_pip
        
        
        Or install with setup.py:
        
        .. code:: bash
        	  
          git clone https://github.com/erikoshaughnessy/data-bench-faker.git
          
          cd data-bench-faker && python3 setup.py install
        
        Usage
        -----
        
        Add the ``DataProvider`` to your ``Faker`` instance:
        
        .. code:: python
        
        	  from faker import Faker
        	  from data_bench_faker import DataProvider
        	  
        	  fake = Faker()
        	  fake.add_provider(DataProvider)
        	  
        	  fake.customer()
        	  fake.account()
        	  fake.Company()
        
        
        View the methods defined by DataProvider:
        
        .. code:: bash
        	  
          $ pydoc3 data_bench_faker.DataProvider
        
        
        .. |pypi| image:: https://img.shields.io/pypi/v/data-bench-faker.svg?style=flat-square&label=version
            :target: https://pypi.python.org/pypi/data-bench-faker
            :alt: Latest version released on PyPi
        
        .. |license| image:: https://img.shields.io/badge/license-apache-blue.svg?style=flat-square
            :target: https://github.com/erikoshaughnessy/data-bench-faker/blob/master/LICENSE
            :alt: Apache license version 2.0  
        
        .. _Faker: https://github.com/joke2k/faker
        
        .. _Data Bench: https://github.com/Data-Bench/data-bench
        
        
Keywords: faker databench test data
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
