├── LICENSE ├── README.md ├── attributes ├── 1-background │ ├── green.png │ ├── purple.png │ └── red.png ├── 2-object │ ├── red circle.png │ └── striped triangle.png └── 3-text │ ├── greek.png │ ├── hello world.png │ └── testing.png ├── images └── __init__.py ├── metadata └── __init__.py ├── nft.py └── utility ├── __init__.py ├── nftstorage.py └── pinata.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/README.md -------------------------------------------------------------------------------- /attributes/1-background/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/1-background/green.png -------------------------------------------------------------------------------- /attributes/1-background/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/1-background/purple.png -------------------------------------------------------------------------------- /attributes/1-background/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/1-background/red.png -------------------------------------------------------------------------------- /attributes/2-object/red circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/2-object/red circle.png -------------------------------------------------------------------------------- /attributes/2-object/striped triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/2-object/striped triangle.png -------------------------------------------------------------------------------- /attributes/3-text/greek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/3-text/greek.png -------------------------------------------------------------------------------- /attributes/3-text/hello world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/3-text/hello world.png -------------------------------------------------------------------------------- /attributes/3-text/testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/attributes/3-text/testing.png -------------------------------------------------------------------------------- /images/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /metadata/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /nft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/nft.py -------------------------------------------------------------------------------- /utility/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /utility/nftstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/utility/nftstorage.py -------------------------------------------------------------------------------- /utility/pinata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galperins4/NFT_Generator/HEAD/utility/pinata.py --------------------------------------------------------------------------------