Skip to content

Commit de7efdb

Browse files
authored
Update README.md
1 parent 02bc729 commit de7efdb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Overview
2-
Simple Python CLI tool to create JSON files with dummy data to use for testing. Uses dataclasses to define schemas so it can be easily customized to create new data exports.
2+
Simple Python CLI tool to create JSON files with dummy data to use for testing. Uses dataclasses to define schemas so it can be easily customized to create new data exports or modify existing ones.
33

4-
Uses Faker to generate the data as defined in the schema.
4+
Uses Faker to generate most of the data as defined in the schema.
55

66
## Requirements
77
Python 3.7+
@@ -21,7 +21,7 @@ Will generate a JSON file with 500 users with the default filename of "fakeUser-
2121

2222
## Schemas
2323

24-
Check the `modules/schema.py` file to see the default schemas of User, Blog, and Product. You can add any new schemas to this file and use the class name as the "Type" when running the generator.
24+
Check the `modules/schema.py` file to see the default schemas of User, Blog, and Product. You can add any new schemas to this file and use the class name as the "Type" when running the generator. You can also modify the existing schemas as needed if you want to tweak the data.
2525

2626
```
2727
@dataclass_json

0 commit comments

Comments
 (0)