An elegant datasets factory for python

an elegant datasets factory
Features
- Schema oriented datasets builder
How to use it
# Import the package into any python app
import rawbuilder
# Init the dataset object as ds
ds = rawbuilder.DataSet(
size=1000,
schema=['user'],
file_name='my_users_dataset_1'
)
# Build the dataset
ds.build()
Credits