Do you think is technically possible to take a screeshot of a website programmatically?
I would like to craft a scheduled Python task that crawls a list of websites
I used selenium and PhantomJS.
from selenium import webdriver driver = webdriver.PhantomJS() driver.get("http://anyurl.com") driver.save_screenshot("/path/to/folder")
be sure to place the PhantomJS executable in your $PATH.