This project is made purely for educational purposes.
This is a simple web scraper implemented in Python using the BeautifulSoup and requests libraries. The scraper is designed to extract data from web pages by navigating through the HTML structure and collecting relevant information.
- Python
- BeautifulSoup 4
- requests
You can install the required libraries using the following command:
pip install beautifulsoup4
pip install requests
- The scraper is built using the BeautifulSoup library, which is a fantastic tool for parsing HTML and XML documents.
- Thanks to the requests library for simplifying the process of making HTTP requests.