mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
Merge d678b2bb0e
into f0ea440d41
This commit is contained in:
commit
7ed9a4835a
44
Auto_Wallpaper_Changer/main_changer.py
Normal file
44
Auto_Wallpaper_Changer/main_changer.py
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
import os
|
||||||
|
import requests
|
||||||
|
import wget
|
||||||
|
import subprocess
|
||||||
|
import time
|
||||||
|
|
||||||
|
def get_wallpaper():
|
||||||
|
url = 'https://api.unsplash.com/photos/random?client_id=ZQfcb7DPk5z8ZH5W7Zaij6xG33M9U9BJ8ddfYifV6_E'
|
||||||
|
params = {
|
||||||
|
'query': 'HD wallpapers',
|
||||||
|
'orientation': 'landscape'
|
||||||
|
}
|
||||||
|
|
||||||
|
response = requests.get(url, params=params).json()
|
||||||
|
image_source = response['urls']['full']
|
||||||
|
|
||||||
|
image = wget.download(image_source, 'D:\\Abdul Rehman\\AI Automations\\Unsplash_Images_API\\Images')
|
||||||
|
return image
|
||||||
|
|
||||||
|
def change_wallpaper():
|
||||||
|
wallpaper = get_wallpaper()
|
||||||
|
cmd = """/usr/bin/osascript<<END
|
||||||
|
tell application "Finder"
|
||||||
|
set desktop picture to POSIX file "%s"
|
||||||
|
end tell
|
||||||
|
END"""
|
||||||
|
|
||||||
|
subprocess.Popen(cmd%wallpaper, shell=True)
|
||||||
|
subprocess.call(["killall Dock"], shell=True)
|
||||||
|
|
||||||
|
def main():
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
change_wallpaper()
|
||||||
|
time.sleep(10)
|
||||||
|
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print("\nHope you like this one! Quitting.")
|
||||||
|
except Exception as e:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
46
Dino Automation/main.py
Normal file
46
Dino Automation/main.py
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
import pyautogui # pip install pyautogui
|
||||||
|
from PIL import Image, ImageGrab # pip install pillow
|
||||||
|
from numpy import asarray
|
||||||
|
import time
|
||||||
|
|
||||||
|
def click(key):
|
||||||
|
pyautogui.keyDown(key)
|
||||||
|
return
|
||||||
|
|
||||||
|
def isCollision(data):
|
||||||
|
# Check colison for birds
|
||||||
|
for i in range(530,560):
|
||||||
|
for j in range(80, 127):
|
||||||
|
if data[i, j] < 171:
|
||||||
|
click("down")
|
||||||
|
return
|
||||||
|
# Check colison for cactus
|
||||||
|
for i in range(530, 620):
|
||||||
|
for j in range(130, 160):
|
||||||
|
if data[i, j] < 100:
|
||||||
|
click("up")
|
||||||
|
return
|
||||||
|
return
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
time.sleep(5)
|
||||||
|
click('up')
|
||||||
|
|
||||||
|
while True:
|
||||||
|
image = ImageGrab.grab().convert('L')
|
||||||
|
data = image.load()
|
||||||
|
isCollision(data)
|
||||||
|
|
||||||
|
# # Draw the rectangle for cactus
|
||||||
|
# for i in range(530, 610):
|
||||||
|
# for j in range(130, 160):
|
||||||
|
# data[i, j] = 0
|
||||||
|
|
||||||
|
# # # Draw the rectangle for birds
|
||||||
|
# for i in range(530, 560):
|
||||||
|
# for j in range(100, 125):
|
||||||
|
# data[i, j] = 171
|
||||||
|
|
||||||
|
# image.show()
|
||||||
|
# break
|
||||||
|
|
Loading…
Reference in New Issue
Block a user