This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
import glob | |
import math | |
# | |
# This script will take all of the images that match a pattern in the local | |
# directory and generate an animated GIF with each image as a frame. Useful | |
# for capturing all of your NFTs into a single file for sharing. | |
# | |
# One time setup assuming you already have python and pip installed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# This script downloads all of the NFT images in a Solana wallet to your local machine. | |
# It should work on Windows, macOS and Linux. Windows would require WSL, Git Bash or similar. | |
# Pass the Solana wallet address and optionally an offset if there are more than 500. | |
# | |
# For example to get the first 500 NFT images: | |
# ./download.sh FoRen4D8jyU1RX9jY7pneaNg3E6CopUEV8cvP1o5vnRm | |
# Then to get 501-1000: |