Web scraping, also known as web harvesting or web data extraction, is the process of retrieving or "scraping" data from websites. Essentially, it involves programmatically accessing a web page and then extracting specific information from it. Python and Beautiful Soup are the most popular tools to do this.
Let's scrape the headings from the blog site "Design Milk" https://design-milk.com/Â
Use the example : webscrape.py
The example looks for a specified HTML tag and then returns the text associated with that tag.
Challenges:
Can you get print just some of the text?
Can you get information from a different site?