-
What you need to know to use this:
- Python
- Jupyter
-
The libraries you need to be familiar with are
- Selenium
- Matplotlib
- Pandas
- Scikit-Learn
- Beautiful Soup
-
Download Python v3.8 and above
Download
Pythonhere. -
Install Jupyter
This will enable you to run
JupyterNotebooks on your PC/Mac.pip install jupyter -
Install Libraries used in the Code
There are multiple libraries that have been used, run the command below to install all of them.
pip install pandas numpy selenium bs4 matplotlib sklearn -
Download the latest Chromedriver
Download the latest
chromedriverhere.Note: Make sure that chromedriver version and your currently installed Chrome browser are the same.
-
Place your Chromedriver in your PATH
Here are instructions depending on your OS, how you can set your PATH:
-
🚀 Finally Run Jupyter
Run the command below to run juypter.
Note: You are going to need to specify the path to where you have downloaded or placed this projects files.
jupyter notebook --notebook-dir /path/to/project
Note: That a snapshot will be taken and saved on the current folder of your project when you run the code
🤜 Happy Coding!!!