data-bench-faker

Data Bench Provider for the Faker Python package.


Keywords
faker, databench, test, data
License
Apache-2.0
Install
pip install data-bench-faker==0.5.0

Documentation

Data Bench Faker

Latest version released on PyPi Apache license version 2.0 Python Versions

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:

$ pip install data-bench-faker

Or install with setup.py:

$ git clone https://github.com/erikoshaughnessy/data-bench-faker.git
$ cd data-bench-faker && python3 setup.py install

Uninstall with pip:

$ pip uninstall data-bench-faker

Usage

Add the DataProvider to your Faker instance:

from faker import Faker
from data_bench_faker import DataProvider

fake = Faker()
fake.add_provider(DataProvider)

customer = fake.customer()
account = fake.customer_account(customer)
company = fake.Company() # note fake.company() creates a company name.

View the methods defined by DataProvider:

$ pydoc3 data_bench_faker.DataProvider