Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 920 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 920 Bytes

webscraping

Some webscraping projects

Prerequisites

Selenium Library

You can install this from the terminal using pip:
$ pip install selenium
Or follow instruction to install manually here: http://www.seleniumhq.org/download/

BeautifulSoup Library

You can install this from the terminal using pip:
$ pip install beautifulsoup4
Or use other methods listed here: https://www.crummy.com/software/BeautifulSoup/bs4/doc/#installing-beautiful-soup

chromedriver

Download the latest version here: https://sites.google.com/a/chromium.org/chromedriver/downloads
This script is currently using ChromeDriver 2.28
It is important to add the executable file path to the script NOT the path to the folder

Useful documentation