You can get the code of the SVG file can be in the browser.
Change the number of NFTs generated in the code.
# Main loop to generate files
for i in range(200):
create_svg_with_gradient(i+1)
create_json_metadata(i+1, f"{i+1}")
For example 9,999 NFTs:
# Main loop to generate files
for i in range(9999):
create_svg_with_gradient(i+1)
create_json_metadata(i+1, f"{i+1}")
2 Likes