Skip to content

Latest commit

 

History

History
70 lines (45 loc) · 1.45 KB

README.md

File metadata and controls

70 lines (45 loc) · 1.45 KB

WebChangeFinder

Simple bot for detecting changes in websites.

Fernando Mendiburu - 2020


Table of Contents

This bot finds changes in a website chosen by the user.

Installation

Go to /home/user directory:

$ cd

Download from here or using git clone:

$ git clone https://github.com/fermendi/WebChangeFinder.git

Dependences

Update the package index by running the following command:

$ sudo apt-get update

Install python (using Python 2.7.17)

$ sudo apt-get install python

Install pip for Python 2 with:

$ sudo apt-get install python-pip

Install selenium package:

See this explanation or see below:

$ pip install selenium

Selenium requires a driver to interface with the chosen browser. Google Chrome driver is available here. See the version of your Google Chrome browser before download the driver.

Download the driver in the same script folder or change the driver path in the script.

Install request library:

This library makes HTTP requests in Python.

$ pip install requests