views:

224

answers:

1

Hello, I am creating a Beta Testers reporting module so they can send in thier comments on my software, but I would like to have the option to include a screenshot with the report. How do I take a screenshot of the screen with Python on Windows? I have found several examples on Linux, but haven't had much luck on Windows.

+1  A: 

Here is an example on windows that google found with "python screenshot windows" http://www.blendedtechnologies.com/quick-screenshots-script-python-pil/38

It uses this ImageGrab module

blissapp
Perfect! This is exactly what I needed. Thanks!
Zachary Brown