Skip to content

Instantly share code, notes, and snippets.

View zyryc's full-sized avatar
🏠
Working from home

Dan Kipruto zyryc

🏠
Working from home
  • Nairobi
View GitHub Profile
@zyryc
zyryc / downloadwallpapers.py
Created August 20, 2023 13:31
Fetch wallpapers from the internet and download it
import requests
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options
from bs4 import BeautifulSoup
import time
import os
Visited_pages = set()