Skip to main content

Posts

Showing posts from July, 2021

Python boto3 send_message

  Automated message  PyAutoGUI is a Python automation library used to click, drag, scroll, move, etc. It can be used to click at an exact position. PyAutoGUI module ,Python scripts control the mouse and keyboard to automate interactions with other applications. The API is designed to be as simple. PyAutoGUI works on Windows, macOS, and Linux, and runs on Python 2 and 3.   This code is used to create the automated message in WhatsApp, iMessage, telegram and other social media.  Preview : Requirements:  text editor such as Python IDLE. In my case I’m using Pycharm {In mobile you can use Pydroid 3} Modules: PyautoGUI. Import the relevant module {pyautogui}. This pyautogui is pre-installed  python library that enables the users to create automations and mouse, keyboard controls. Features:  Sending keystrokes to applications (for example, to fill out forms). Take screenshots, and it is saved as .png or .jpeg extension. Locate an applicat...

Python fun game

💞💞 Loves me or not game 💔   Turtle is a Python library which used to create graphics, pictures, and games. It was a part of the original Logo programming language. ... The Logo programming language was popular among the kids because it enables us to draw attractive graphs to the screen in the simple way.  We can use functions like turtle .forward(…) and turtle .right(…) which can move the turtle around . This python code is used to create some game to make some funs with your friends. PREVIEW: Requirements: Text editor such as Python IDLE. In my case i’m using Pycharm (in mobile you can use pydroid 3).               Pycharm :             pydroid3: Modules:  Turtle module.   Import the turtle module.This turtle module is a pre-installed python library that enables users to create pictures and shapes.                     To install tur...