rawbuilder
an elegant datasets factory
- Free software: MIT license
- Documentation: https://rawbuilder.readthedocs.io.
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
This package was created with Cookiecutter .