[EMAIL PROTECTED] wrote: > Scrape means simply scraping pixel colors from locations on the screen. > I'll worry about assembling it into meaningful information.
import ImageGrab
im = ImageGrab.grab()
v = im.getpixel((x, y))
requires:
http://www.pythonware.com/products/pil/
</F>
--
http://mail.python.org/mailman/listinfo/python-list
