/google-arts-crawler

Google Arts & Culture high quality image downloader

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Google Arts & Culture crawler

Google Arts & Culture high quality image downloader

Download images from Google Arts and Culture in high resolution

Using this script you can download any image from https://artsandculture.google.com/ in high quality (even 12k!)

Warning: it's simple and ugly code created at one night. It might be full of bugs. Feel free to do anything you want with this code

If you got any trouble, just send me an email boquete37@gmail.com

Installation

  • git clone https://github.com/Boquete/google-arts-crawler.git
  • cd google-arts-crawler/
  • virtualenv venv
  • source venv/bin/activate
  • pip3 install -r requirements.txt
  • python3 crawler.py

Usage

After running python3 crawler.py you will be asked for:

Output

After script ends, your image (.jpg)w ill be located at:

outputs/image_name.jpg

Problems

  1. chromedriver executable needs to be in PATH

You can download ChromeDriver here: https://sites.google.com/a/chromium.org/chromedriver/downloads . Then you have multiple options:

  • add it to your system path
  • put it in the same directory as your python script
  • specify the location directly via executable_path driver = webdriver.Chrome(executable_path='C:/path/to/chromedriver.exe')

( https://stackoverflow.com/a/40556092/4807171 )