-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathmain.py
45 lines (34 loc) · 1.25 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
import requests
import keyboard
from PIL import ImageGrab
import io
import base64
from dotenv import load_dotenv
load_dotenv("secret.env")
# Set your Imgur API client ID here
CLIENT_ID = os.getenv("IMGUR_CLIENT_ID")
def upload_to_imgur(image_data):
headers = {"Authorization": f"Client-ID {CLIENT_ID}"}
response = requests.post("https://api.imgur.com/3/image", headers=headers, data={"image": image_data})
return response.json()
def upload_image():
try:
image = ImageGrab.grabclipboard()
if image is None:
print("No image found in the clipboard.")
return
with io.BytesIO() as output:
image.save(output, format='PNG')
image_data = base64.b64encode(output.getvalue()).decode() # converted to base64
# Upload the image to Imgur
response = upload_to_imgur(image_data)
if response.get("success"):
print("Image uploaded successfully:", response["data"]["link"])
else:
print("Failed to upload image:", response)
except Exception as e:
print(f"An error occurred: {e}")
keyboard.add_hotkey('ctrl+alt+s', upload_image)
print("Listening for the shortcut... (Press ESC to stop)")
keyboard.wait('esc')