Metadata-Version: 1.0
Name: PyVirtualDisplay
Version: 0.0.0
Summary: ???
Home-page: https://github.com/ponty/pyvirtualdisplay
Author: ponty
Author-email: UNKNOWN
License: BSD
Description: PyVirtualDisplay is a python wrapper for Xvfb_ and Xephyr_
        
        home: https://github.com/ponty/PyVirtualDisplay
        
        documentation: http://ponty.github.com/PyVirtualDisplay
        
        Possible applications:
         * GUI testing
         * automatic GUI screenshot
        
        Basic usage
        ============
        
        ::
        
            from pyvirtualdisplay import Display
            # Start Xephyr
            disp1=Display(visible=1, size=(320, 240)).start()
        
        
        Installation
        ============
        
        General
        --------
        
         * install Xvfb_ and Xephyr_.
         * install setuptools_ or pip_
         * install the program:
        
        if you have setuptools_ installed::
        
            # as root
            easy_install PyVirtualDisplay
        
        if you have pip_ installed::
        
            # as root
            pip install PyVirtualDisplay
        
        Ubuntu
        ----------
        ::
        
            sudo apt-get install python-setuptools
            sudo apt-get install xvfb
            sudo apt-get install xephyr
            sudo easy_install PyVirtualDisplay
        
        Uninstall
        ----------
        ::
        
            # as root
            pip uninstall PyVirtualDisplay
        
        
        
        .. _setuptools: http://peak.telecommunity.com/DevCenter/EasyInstall
        .. _pip: http://pip.openplans.org/
        .. _Xvfb: http://en.wikipedia.org/wiki/Xvfb
        .. _Xephyr: http://en.wikipedia.org/wiki/Xephyr
        
Keywords: Xvfb Xephyr X wrapper
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
