# Python Web Scrapper

## Python Web Scrapper

- [About](https://arditxhaferi2.gitbook.io/python-web-scrapper/master.md): In this project we are gonna cover all the parts for making a functional (not good) web scrapper in Python.
- [Installing Python](https://arditxhaferi2.gitbook.io/python-web-scrapper/getting-started/installing-python.md): Python is an interpreted, high-level and general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant whitespace.
- [Installing PIP](https://arditxhaferi2.gitbook.io/python-web-scrapper/getting-started/installing-pip.md): PIP is a package management system used to install and manage software packages written in Python. It stands for “preferred installer program” or “Pip Installs Packages.”
- [Request](https://arditxhaferi2.gitbook.io/python-web-scrapper/tools/request.md): Requests is an elegant and simple HTTP library for Python, built for human beings.
- [Beautiful Soup](https://arditxhaferi2.gitbook.io/python-web-scrapper/tools/beautiful-soup.md): No not actual soup, Beautiful Soup is a library that makes it easy to scrape information from web pages. It sits atop an HTML or XML parser, providing Pythonic idioms for iterating, searching, and etc
- [Selenium](https://arditxhaferi2.gitbook.io/python-web-scrapper/tools/selenium.md): Selenium is a Python module for browser automation. You can use it to grab a webpages HTML code.
- [News Scrapper](https://arditxhaferi2.gitbook.io/python-web-scrapper/project/news-scrapper.md): We will continue to create a news scrapper with the knowledge we learn from our tools.
