Metadata-Version: 1.0
Name: pyscreenshot
Version: 0.1.3
Summary: screenshot
Home-page: https://github.com/ponty/pyscreenshot
Author: ponty
Author-email: UNKNOWN
License: BSD
Description: ============
        pyscreenshot
        ============
        
        The ``pyscreenshot`` module can be used to copy 
        the contents of the screen to a PIL_ image memory or file.
        Replacement for the ImageGrab_ Module, which works on Windows only.
        
        Plugin based, it has wrappers for scrot, ImageMagick_ and PIL_.
        
        home: https://github.com/ponty/pyscreenshot
        
        Usage
        ------------
        
        Example::
        
        	import pyscreenshot as ImageGrab
        	# fullscreen
        	im=ImageGrab.grab()
        	im.show()
        	# part of the screen		
        	im=ImageGrab.grab(bbox=(10,10,500,500))
        	im.show()
        	# to file
        	ImageGrab.grab_to_file('im.png')
        
        Installation
        ------------
        
        You should install at least one backend on linux. 
        
        On Ubuntu::
        
        	# one of them
        	sudo apt-get install scrot
        	sudo apt-get install imagemagick
        
        The easiest way to get pyscreenshot is if you have setuptools_ installed::
        
            easy_install pyscreenshot
        
        or if you have pip_ installed::
        
            pip install pyscreenshot
        
        Uninstall::
        
            pip uninstall pyscreenshot
        
        
        .. _setuptools: http://peak.telecommunity.com/DevCenter/EasyInstall
        .. _pip: http://pip.openplans.org/
        .. _ImageGrab: http://www.pythonware.com/library/pil/handbook/imagegrab.htm
        .. _PIL: http://www.pythonware.com/library/pil/
        .. _ImageMagick: http://www.imagemagick.org/
        
Keywords: screenshot
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
