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 will explain how to perform web scraping using Python 3, along with the requests and BeautifulSoup4 libraries. These powerful Python libraries simplify the process: requests […]
Importing bulk content into WordPress – part 2
On the previous tutorial, we learned about how to import content into a WordPress site. In this tutorial, I will explain how to import bulk images into a WordPress site. I will also put a download link of a script with sample files so you can install and run it on your system. Please go […]
Importing bulk content into WordPress – Part 1
WordPress is shipped with rest API which makes migrating or importing contents into WordPress sites very easy. If you have bulk contents for example 100s of posts. It’s not possible to create post manually however you can use rest API features to automate the task. There are few things required before importing contents, Basic – […]