Python server code was created to execute other scripts and handle image transmission. Additionally, a simple script was included to generate a sample heatmap to verify if the server can transmit images. A brief test.py script was also added to test the server’s POST and GET functionality. The server was built using Python's built-in http.server library. Script execution via the server uses the POST method with the following approach: url_run_script = "http://localhost:8000/run-script" and data = {"script_name": "generate_heatmap.py"}, followed by response = requests.post(url_run_script, json=data). On the other hand, image retrieval uses the server's GET method as follows: url_get_image = "http://localhost:8000/get-image", then image_response = requests.get(url_get_image), and finally file.write(image_response.content). + support*