stubs for reading and storing data. Also added README.
Fabricator
Summary
Fabricator is a data generation tool for myself, but might be useful for others too. This is mainly practice for object oriented programming and I won't attempt to refactor this to anything else.
Features
- Generate Names
- Generate Phone
- Generate Addresses
- Output to different file formats:
- CSV
- JSON
- XML
- YAML
- TOML
- Cross platform:
- Windows
- MacOS
- Linux
Usage
Basic usage:
$ fab gen -n 10 -f csv -o output.csv name:phone:address
This will output a CSV file named 'output.csv' with 10 rows randomly of generated data for names, phone numbers and addresses.
Building
For debug build run
dotnet build
Running the tool directly with dotnet i.e.
dotnet run -- gen -n 10 -f csv -o output.csv name:phone:address
Licensing
MIT License
Description
Languages
C#
100%