Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 473 Bytes

README.md

File metadata and controls

23 lines (22 loc) · 473 Bytes

ILMT generator

Description

This simple generator is to be used in order to create a dataframe resolving real data from ILMT, which can be used for testing purposes

How to use it

python3 pip install -r requirements.txt

or just

pip install -r requirements.txt

Then

from main import Generator

gen = Generator(
    1000,
    "path_to_your_file.csv"
)
print(gen.generate())

Alternatively you can work inside main.py script :)