knowledge programing

Python Screenshot Server

Thought I’d share some code python. This is just a simple way to share a screenshot over a network. “”” Serves screen shots at a specified interval. Doesn’t handle POST requests. Based on code from: http://www.blendedtechnologies.com/python-trick-really-little-http-server/220 Code source: http://westonrenoud.com/?p=123 “”” import os import time import threading import SocketServer import SimpleHTTPServer from PIL import ImageGrab HOST …

Continue Reading