Sunil Chaudhary
Autoblog Alpha WordPress Plugin
Are you tired of manually creating and publishing blog content? Look no further than the Autoblog Alpha WordPress plugin! This cutting-edge tool leverages the power of GPT-3 technology to generate content based on your preferred ideas and keywords. Whether you want to publish on your own WordPress site or a remote one, the Autoblog Alpha … Read more
Scraping Google Maps using Puppeteer
This is the node js script to scrape google maps using Puppeteer
PHP AI Content Writer Script
I have created the “PHP AI Content Writer Script”. It uses Open AI technology to write high-quality content for you in no time. Get it at an affordable price of just $20 Note: OPEN AI KEY does not come with this product. you have purchased your own tokens. PHP AI Content writer is just a … Read more
How to generate a sitemap.xml file for a given folder using PHP?
If you want to generate a sitemap.xml file for a given folder, you can use the below PHP script. This script will crawl through a given folder and generate a sitemap.xml file that you can use to submit to search engines. In this script, it traverses the current folder and searches for HTML files, and … Read more
Traverse a directory in php
Sometimes, we need to traverse a directory. Here is the code to traverse a directory/folder. Exclude current and parent directory The above code display all the files and sub-directories in a current directory, including your current directory (“.”) and parent directory (“..”). To exclude these directories you can check the file name. Exclude all subdirectories … Read more
Setting up Python Virtual Environment on Ubuntu
This guide helps to set up a python virtual environment on Ubuntu. First, I will check the current version of python on my ubuntu machine $ python3 -V Now install the python3-venv package that provides the venv module $ sudo apt update$ sudo apt install python3-venv Creating virtual environment once, you install the python3-venv package. … Read more
Google map scraper using Selenium
In the last post, I have shown you how to scrape google “People also ask”. Here is the code to scrape the Google Map using Selenium. Please leave the suggestions, and comments below or in our Facebook group You, Me, and Automation.
Scraping “People Also Ask” Using Selenium
A lot of people ask me to write a script to scrape google “people also ask”. This script fetches the data and saves it in a CSV file.
Web scraping using Scrapy – Part 1
This article is about scrapy for web scraping. I will tell you how to set up and scrape with examples. Step1: Python Installation First, you download & install python on your machine using this link https://www.python.org/downloads/release/python-3105/ What is python? Python is a high-level, interpreted, general-purpose programming language. Its design philosophy emphasizes code readability with the … Read more