A command-line tool for generating and processing different types of entities with specified amounts.
- Install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh- Run the project:
uv run main.py ARGUMENTS
See --help to discover entities:
uv run main.py --helpRun the tool with the following arguments:
uv run main.py generate -e <entity_type> -a <number>
# or
uv run main.py generate --entity <entity_type> --amount <number>Use --dry-run to generate data without making HTTP requests:
uv run main.py generate -e <entity_type> -a <number> --dry-runRun the standard generation scheme:
uv run main.py schemeUse --dry-run to execute the scheme without making HTTP requests:
uv run main.py scheme --dry-runRun the tests using pytest:
uv run pytest tests.py