Skip to content

Commit 273b455

Browse files
committed
Adds instructions for using generators
1 parent 928b612 commit 273b455

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

.data/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Data Generators Setup
2+
3+
## Quick Setup
4+
5+
For any generator directory (aml, cpg, diligence, gtm, healthcare, supplychain, telco):
6+
7+
```bash
8+
cd .data/<demo>
9+
python3 -m venv venv
10+
source venv/bin/activate
11+
pip install -r requirements.txt
12+
python generate.py
13+
```

.data/cpg/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# CPG generator uses only built-in Python modules
2+
# No external dependencies required

.data/healthcare/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
faker>=18.9.0

.data/supplychain/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
faker>=18.9.0

0 commit comments

Comments
 (0)