Send Birthday Wish as SMS/Mail with Python 3 Fast2SMS API

Send Birthday Wish as SMS/Mail with Python 3 Fast2SMS API

July 8, 2022

Python 3 Fast2SMS API Bot to Send Birthday Wish as SMS or Mail to Multiple Contacts on Phone in Command…

Python 3 OpenCV Detect People Face in Webcam and Send SMS Using Sinch API in Command Line

July 8, 2022

pip install opencv-python code.py # OpenCV program to detect face in real time # import libraries of python OpenCV #…

Python 3 Tkinter Code to Search Installed Apps on Computer Using winapps Module GUI Desktop App

July 18, 2022

winapps is a Python library that enables us to manage installed applications on Windows operating system. So, in this tutorial,…

Python 3 Display List of Installed Software on PC

July 8, 2022

Today I'll use Python 3 subprocess module to display a list of all the installed software on the computer. You…

Schedule Python Scripts Using Windows Task Scheduler

July 8, 2022

In this tutorial, you will learn how to schedule a Python 3 script using Windows Task Scheduler. Basically, this project…

Python 3 Automation Code to Move the Mouse at Constant Speed

July 7, 2022

code.py import sys import time import win32api if (len(sys.argv) < 4): print "Usage: python mousemove.py dx dy speed" sys.exit() current…

Move Mouse Every Minute Using Python 3 & PyAutoGUI

July 7, 2022

code.py import pyautogui as pg import time def delete_for_everyone(): pg.click(807, 979) pg.typewrite("hello") pg.typewrite(["enter"]) time.sleep(2) pg.click(1621, 896) pg.click(1621, 896) # time.sleep(1)…

Read, Parse & Write YAML Files Using Python 3 & pyyaml

July 7, 2022

First of all, install the pyyaml package using pip in the command line. pip install pyyaml code.py import yaml with…

Modify/Update YAML Files Using Python 3 & ruamel.yaml

July 7, 2022

If you want to preserve the order of your mapping keys, the white space between the elements of the root-level…

Skip Youtube Ads Using OpenCV, PyAutoGUI & Python 3 AdBlocker

July 7, 2022

The below-mentioned Python 3 code-snippet allows you to skip/block Youtube ads. I've also used OpenCV and PyAutoGUI libraries to implement…