Web Scraping Practice_0
let's dive into web scraping by practicing real-world projects ...
Table of contents
What You Need :
Before we start to dive deep into scraping projects, you will need to watch the previous parts of the series web Scraping 101, which includes five Parts.
As well, look for the documentation of the provided library and tools, that you need to be familiar with while we do some projects.
Install the desired libraries :
As we see, there are many libraries that we going to use to do our projects,
to install them you need first to have an IDE/text editor to write code in it.
We will be using Visual Studio Code to practice.
Now let's see how to install those libraries :
- BeautifulSoup :
pip install beautifulsoup4
- Selenium :
pip install selenium
That's it for that part and see you with the first project.