It's possible to download every image based on this link adress:
As you can see, it ends in 00901.jpg / 00902.jpg / 00903.jpg / etc.
Is it possible to download all the images from 00000 to 01473? (that's the last image)
11 Answer
You can use "curl" to easily do this. Here is the website to download:
- Help Page:
- Download page: (Just scroll down to the correct package, such as Windows binary if you're on Windows)
All you have to do is pass the correct sequence to the curl executable and you're good.
Here is the exact line of code you can use with curl in your case. Make sure to run from the command window in the same folder as the "curl.exe" is in:
curl -o ".\download\pic#1.jpg"- Where the "00000-10000" in brackets represents the numbers you want to scan. This should do the trick. It might take a while though.
- Where "#1" represents the same numbers in the file output. You can change the output directory, in my example it will output in a sub-directory called "download"
Update: I tested my command and it works fine with your site. So this should do what you want it to.
Alternatives: If you don't want to use curl, there are alternatives like:
- wget for Windows:
- Powershell "Invoke-WebRequest"
- Powershell "Net.WebClient"
But I won't get into details on how to accomplish this with those tools.
4