From e0647d297c4c140fab618bfd37a6428b15603c54 Mon Sep 17 00:00:00 2001
From: s47700 <s47700@bht-berlin.de>
Date: Sat, 23 Mar 2024 16:26:17 +0100
Subject: [PATCH] Delete fo2ward_image.py

---
 api attempts/fo2ward_image.py | 20 --------------------
 1 file changed, 20 deletions(-)
 delete mode 100644 api attempts/fo2ward_image.py

diff --git a/api attempts/fo2ward_image.py b/api attempts/fo2ward_image.py
deleted file mode 100644
index 124ef60..0000000
--- a/api attempts/fo2ward_image.py	
+++ /dev/null
@@ -1,20 +0,0 @@
-import requests
-from PIL import Image
-from io import BytesIO
-# Fetch camera image from OctoPrint
-def fetch_camera_image():
-    url =  "http://192.168.0.205/webcam/?action=stream"
-    response = requests.get(url, timeout=10)
-    print(f"Response size: {len(response.content)} bytes") # Check the size of the response
-    return response.content
-
-def display_image(image_data):
-    try:
-        image = Image.open(BytesIO(image_data))
-        image.show()
-    except Exception as e:
-        print(f"Error displaying image: {e}") # Log any errors
-
-if __name__ == "__main__":
-    image_data = fetch_camera_image()
-    display_image(image_data)
-- 
GitLab