Type to search…

↑↓ navigate open Esc close
Learn Web Scraping

23 Mar 2024 Anshul Raj Verma

Blog Icon: mdi:search-web

Learn Web Scraping from resources which I used to learn it.

Back

Web scraping is a very essential tool for programmers to learn to gather data from websites. Specifically, for Data Scientists web scraping is goto tool to gather data from websites. We can use bs4.BeautifulSoup or selenium in Python to scrape any website.

web scraping - real python

You can see some of my projects where I scraped websites like 99acres.com, flipkart.com, housing.com and gather useful data for my Data Science projects like arv-anshul/campusx-real-estate.

I have learned Web Scraping from YouTube only.

YouTube Videos

YouTube Playlists

If you follow/learn these resources then you will understand how do Web Scraping works and how to do it.

My Python Package for Web Scraping

I have done lots of project on Web Scraping but while doing those web scraping projects I doesn’t found a good python package to handle/parse cURL command. But I found a package called @spulec/uncurl on GitHub but it is managed badly so that I cloned that project and refactor it well and republished as curler on PyPI.