mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-03-13 17:19:50 +00:00
Merge pull request #365 from Kunalp02/UpdatedByKP1
Automate OS by using python
This commit is contained in:
commit
7cd0c334a4
19
scripts/Automate OS/Automate_OS.py
Normal file
19
scripts/Automate OS/Automate_OS.py
Normal file
@ -0,0 +1,19 @@
|
||||
# Automate Win, Mac and Linux
|
||||
# pip install PyAutoGUI
|
||||
import pyautogui as py
|
||||
# Mouse Movements
|
||||
py.moveTo(100, 100)
|
||||
py.moveTo(200, 200, duration=1)
|
||||
py.click(100, 100)
|
||||
py.doubleClick(200, 200)
|
||||
# Keyboard Inputs
|
||||
py.write('Hello World!', interval=0.25)
|
||||
py.press('enter')
|
||||
py.hotkey('ctrl', 'c')
|
||||
py.keyDown('shift')
|
||||
py.keyUp('shift')
|
||||
# Screen Automation
|
||||
img = py.screenshot('screenshot.jpg')
|
||||
img.save('screenshot.jpg')
|
||||
loc = py.locationsOnScreen('icon.jpg')
|
||||
print(loc)
|
4
scripts/Automate OS/Readme.md
Normal file
4
scripts/Automate OS/Readme.md
Normal file
@ -0,0 +1,4 @@
|
||||
# Automating Operating System Using Python
|
||||
|
||||
# Dependecies
|
||||
pip install PyAutoGUI
|
8
scripts/Whatsapp Automation/Readme.md
Normal file
8
scripts/Whatsapp Automation/Readme.md
Normal file
@ -0,0 +1,8 @@
|
||||
# Automate Whatsapp Messages
|
||||
This simple script will automate whatsapp
|
||||
|
||||
## Usage
|
||||
|
||||
- requires pywhatkit
|
||||
- Use `pip install pywhatkit`
|
||||
- Run `python Whatsapp.py`
|
24
scripts/Whatsapp Automation/Whatsapp.py
Normal file
24
scripts/Whatsapp Automation/Whatsapp.py
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
|
||||
import pywhatkit
|
||||
|
||||
# Send a WhatsApp Message to a Contact at 1:30 PM
|
||||
pywhatkit.sendwhatmsg("+910123456789", "Hi", 13, 30)
|
||||
|
||||
# Same as above but Closes the Tab in 2 Seconds after Sending the Message
|
||||
pywhatkit.sendwhatmsg("+910123456789", "Hi", 13, 30, 15, True, 2)
|
||||
|
||||
# Send an Image to a Group with the Caption as Hello
|
||||
pywhatkit.sendwhats_image("AB123CDEFGHijklmn", "Images/Hello.png", "Hello")
|
||||
|
||||
# Send an Image to a Contact with the no Caption
|
||||
pywhatkit.sendwhats_image("+910123456789", "Images/Hello.png")
|
||||
|
||||
# Send a WhatsApp Message to a Group at 12:00 AM
|
||||
pywhatkit.sendwhatmsg_to_group("AB123CDEFGHijklmn", "Hey All!", 0, 0)
|
||||
|
||||
# Send a WhatsApp Message to a Group instantly
|
||||
pywhatkit.sendwhatmsg_to_group_instantly("AB123CDEFGHijklmn", "Hey All!")
|
||||
|
||||
# Play a Video on YouTube
|
||||
pywhatkit.playonyt("PyWhatKit")
|
Loading…
x
Reference in New Issue
Block a user