Jon-Becker / nft-generator-py

This tool allows users to generate sets of unique images and metadata using weighted layer collections.
MIT License
305 stars 127 forks source link

Where to enter amount of nft i want to generate? #48

Closed PetreEP closed 1 year ago

PetreEP commented 1 year ago

Hey in the previous version there was a line "generate_unique_images (50, {"

In the updated 2.0 version I can't find where should I enter the amount :( I have this error now: "heimdall: error: Missing a mandatory option (-n or -c). Use -h to show the help menu"

Jon-Becker commented 1 year ago

The module uses argparse now, so you tell it how many to generate using the -n flag. To tell it what config to use, use the -c flag.

Ex: generate.py -n 10 -c config.json

PetreEP commented 1 year ago

Got it! Thank you