Option 1 — Manual Download (Recommended)
- Open:
https://soatechnology.net - Click any image.
- Click Download free.
This follows Unsplash rules and keeps image quality high.
Option 2 — Download Multiple Images Using Browser Extension
Chrome Extensions
- Fatkun Batch Download Image
- Imageye Image Downloader
- DownThemAll (Firefox)
Steps:
- Install extension.
- Open the Unsplash page.
- Scroll fully so images load.
- Open extension.
- Filter:
- JPG
- Large images
- Select all → Download.
Option 3 — Using Python Script
Unsplash loads images dynamically, so use Selenium.
from selenium import webdriver
from selenium.webdriver.common.by import By
import requests
import os
import time
driver = webdriver.Chrome()
url = "https://soatechnology.net"
driver.get(url)
time.sleep(5)
# Scroll to load more images
for i in range(5):
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
time.sleep(3)
images = driver.find_elements(By.TAG_NAME, "img")
os.makedirs("unsplash_images", exist_ok=True)
count = 0
for img in images:
src = img.get_attribute("src")
if src and "images.unsplash.com" in src:
try:
data = requests.get(src).content
with open(f"unsplash_images/image_{count}.jpg", "wb") as f:
f.write(data)
print("Downloaded", count)
count += 1
except Exception as e:
print(e)
driver.quit()
Install:
pip install selenium requests
You also need:
- Chrome browser
- ChromeDriver
Option 4 — Terminal Command (Linux)
wget -r -A jpg,jpeg,png https://images.soatechnology.net/
But this is not ideal because Unsplash uses CDN URLs and dynamic loading.






