An approach to Web Scraping in Python with BeautifulSoup

There are mainly two ways to extract data from a website: Use the API of the website (if it exists). For example, Facebook has the Facebook Graph API which allows retrieval of data posted on Facebook. Access the HTML of the webpage and extract useful information/data from it. This technique is called web scraping or … Continue reading An approach to Web Scraping in Python with BeautifulSoup

Data Visualization Using Python

In this example we'll perform different Data Visualization charts on Population Data. There’s an easy way to create visuals directly from Pandas, and we’ll see how it works in detail in this tutorial. Install neccessary Libraries To easily create interactive visualizations, we need to install Cufflinks. This is a library that connects Pandas with Plotly, … Continue reading Data Visualization Using Python