[go: up one dir, main page]

0% found this document useful (0 votes)
397 views1 page

Slides Web Scraping PDF

Web scraping is the process of automatically extracting data from websites using HTTP requests and involves two steps: fetching web pages using an HTTP library like Requests and then extracting data from the pages using a parsing library like BeautifulSoup. Requests simplifies making HTTP requests and BeautifulSoup parses responses to extract desired information in an easily understandable format.

Uploaded by

adhi_naren
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
397 views1 page

Slides Web Scraping PDF

Web scraping is the process of automatically extracting data from websites using HTTP requests and involves two steps: fetching web pages using an HTTP library like Requests and then extracting data from the pages using a parsing library like BeautifulSoup. Requests simplifies making HTTP requests and BeautifulSoup parses responses to extract desired information in an easily understandable format.

Uploaded by

adhi_naren
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Web Scraping

● Web Scraping is the process of automatically mining, collecting or extracting data from
Websites using the HTTP protocol

● Web Scraping is a 2-step process:


- Fetching or downloading the web page from the server using the HTTP protocol
(Requests library)
- Extracting data from the web page (BeautifulSoup library)

● Requests is a Python HTTP library and its goal is to make HTTP requests simpler and
more human-friendly

● BeautifulSoup is Python library (module) that parses the web page, extracts the desired
information and presents it in a format we can easily make sense of

Master Python Programming


By Andrei Dumitrescu

You might also like