This script downloads images from the puush service. It takes a range of image IDs and downloads any images that are available.
git clone https://github.com/maximusfox/rb-PuushScanner.git
sudo gem install httpclient
cd rb-PuushScanner
chmod +x main.rb
./puush_downloader.rb [options]
Available options:
-t, --threads COUNT
: Number of threads to use (default: 4)-f, --first-id ID
: First ID to check (default: mHHi0)-l, --last-id ID
: Last ID to check (default: mHHi9)-c, --command TEMPLATE
: Command template to execute (default: 'echo ""; wget -nv %s -O %s.%s')
Download images with IDs between mHHi50 and mHHi70 using 8 threads:
./main.rb -t 8 -f mHHi50 -l mHHi70