Intercepting Network Requests with Puppeteer
Puppeteer can be very handy for getting background requests. There could be several background requests sent by a website. Curl, wget or selenium can not get you all those requests. Using Puppeteer we can collect and filter all requests.
Web scraping with Python 3, Requests and Beautifulsoup (bs4)
Web scraping is the process of extracting data from websites and structuring it into formats like CSV, XLS, XML, or SQL for further analysis and insights. In this guide, I..