├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml.bak ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── Vagrantfile ├── clean.py ├── doc ├── gen │ ├── python3_-m_pyscreenshot.check.speedtest.txt │ ├── python3_-m_pyscreenshot.check.speedtest_--childprocess_0.txt │ ├── python3_-m_pyscreenshot.check.versions.txt │ ├── python3_-m_pyscreenshot.examples.virtdisp.txt │ └── xmessage.png ├── generate-doc.py └── hierarchy.dot ├── format-code.sh ├── lint.sh ├── pyproject.toml ├── pyscreenshot ├── __init__.py ├── about.py ├── check │ ├── __init__.py │ ├── showall.py │ ├── speedtest.py │ └── versions.py ├── childproc.py ├── cli │ ├── __init__.py │ ├── grab.py │ └── print_backend_version.py ├── err.py ├── examples │ ├── __init__.py │ ├── grabbox.py │ ├── grabfullscreen.py │ └── virtdisp.py ├── imcodec.py ├── loader.py ├── plugins │ ├── __init__.py │ ├── backend.py │ ├── freedesktop_dbus.py │ ├── gdk3pixbuf.py │ ├── gnome_dbus.py │ ├── gnome_screenshot.py │ ├── grim.py │ ├── imagemagick.py │ ├── ksnip.py │ ├── kwin_dbus.py │ ├── mac_quartz.py │ ├── mac_screencapture.py │ ├── maim.py │ ├── msswrap.py │ ├── pilwrap.py │ ├── pyside2_grabwindow.py │ ├── pyside_grabwindow.py │ ├── qt4grabwindow.py │ ├── qt5grabwindow.py │ ├── scrot.py │ ├── wxscreen.py │ └── xwd.py ├── py.typed ├── tempexport.py └── util.py ├── pytest.ini ├── requirements-doc.txt ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── tests ├── bt.py ├── config.py ├── double_disp.py ├── fillscreen.py ├── fillscreen_pygame.py ├── fillscreen_tk.py ├── genimg.py ├── image_debug.py ├── notest.py ├── size.py ├── test_check.py ├── test_default.py ├── test_examples.py ├── test_freedesktop_dbus.py ├── test_gnome_dbus.py ├── test_grim.py ├── test_imagemagick.py ├── test_ksnip.py ├── test_kwin_dbus.py ├── test_mac_quartz.py ├── test_mac_screencapture.py ├── test_maim.py ├── test_mss.py ├── test_pil.py ├── test_pygdk3.py ├── test_pyqt4.py ├── test_pyqt5.py ├── test_pyside.py ├── test_pyside2.py ├── test_scrot.py ├── test_wx.py ├── test_x_gnome_screenshot.py └── vagrant │ ├── Vagrantfile.debian10.gnome.wayland.rb │ ├── Vagrantfile.debian10.gnome.x11.rb │ ├── Vagrantfile.debian10.kde.wayland.rb │ ├── Vagrantfile.debian10.kde.x11.rb │ ├── Vagrantfile.debian11.gnome.wayland.rb │ ├── Vagrantfile.debian11.gnome.x11.rb │ ├── Vagrantfile.debian11.kde.wayland.rb │ ├── Vagrantfile.debian11.kde.x11.rb │ ├── Vagrantfile.kubuntu.20.04.rb │ ├── Vagrantfile.kubuntu.22.04.rb │ ├── Vagrantfile.kubuntu.22.10.rb │ ├── Vagrantfile.lubuntu.20.04.rb │ ├── Vagrantfile.lubuntu.22.04.rb │ ├── Vagrantfile.lubuntu.22.10.rb │ ├── Vagrantfile.ubuntu.20.04.rb │ ├── Vagrantfile.ubuntu.22.04.rb │ ├── Vagrantfile.ubuntu.22.04.sway.rb │ ├── Vagrantfile.ubuntu.22.10.rb │ ├── Vagrantfile.ubuntu.server.22.04.rb │ ├── Vagrantfile.xubuntu.20.04.rb │ ├── Vagrantfile.xubuntu.22.04.rb │ ├── Vagrantfile.xubuntu.22.10.rb │ ├── debian10.gnome.wayland.sh │ ├── debian10.gnome.x11.sh │ ├── debian10.kde.wayland.sh │ ├── debian10.kde.x11.sh │ ├── debian10_kde.sh │ ├── gdm3.sh │ ├── kubuntu.20.04.sh │ ├── kubuntu.22.04.sh │ ├── kubuntu.22.10.sh │ ├── lightdm.sh │ ├── lubuntu.20.04.sh │ ├── lubuntu.22.04.sh │ ├── lubuntu.22.10.sh │ ├── osx.sh │ ├── osx1015.1.sh │ ├── osx1015.2.sh │ ├── osx1015.sh │ ├── ubudep.sh │ ├── ubuntu.20.04.sh │ ├── ubuntu.22.04.sh │ ├── ubuntu.22.04.sway.sh │ ├── ubuntu.22.10.sh │ ├── ubuntu.server.sh │ ├── vagrant_boxes.py │ ├── win.sh │ ├── xubuntu.20.04.sh │ ├── xubuntu.22.04.sh │ └── xubuntu.22.10.sh └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/.travis.yml.bak -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/Vagrantfile -------------------------------------------------------------------------------- /clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/clean.py -------------------------------------------------------------------------------- /doc/gen/python3_-m_pyscreenshot.check.speedtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/doc/gen/python3_-m_pyscreenshot.check.speedtest.txt -------------------------------------------------------------------------------- /doc/gen/python3_-m_pyscreenshot.check.speedtest_--childprocess_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/doc/gen/python3_-m_pyscreenshot.check.speedtest_--childprocess_0.txt -------------------------------------------------------------------------------- /doc/gen/python3_-m_pyscreenshot.check.versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/doc/gen/python3_-m_pyscreenshot.check.versions.txt -------------------------------------------------------------------------------- /doc/gen/python3_-m_pyscreenshot.examples.virtdisp.txt: -------------------------------------------------------------------------------- 1 | $ python3 -m pyscreenshot.examples.virtdisp 2 | -------------------------------------------------------------------------------- /doc/gen/xmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/doc/gen/xmessage.png -------------------------------------------------------------------------------- /doc/generate-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/doc/generate-doc.py -------------------------------------------------------------------------------- /doc/hierarchy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/doc/hierarchy.dot -------------------------------------------------------------------------------- /format-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/format-code.sh -------------------------------------------------------------------------------- /lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/lint.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyscreenshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/__init__.py -------------------------------------------------------------------------------- /pyscreenshot/about.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.1" 2 | -------------------------------------------------------------------------------- /pyscreenshot/check/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyscreenshot/check/showall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/check/showall.py -------------------------------------------------------------------------------- /pyscreenshot/check/speedtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/check/speedtest.py -------------------------------------------------------------------------------- /pyscreenshot/check/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/check/versions.py -------------------------------------------------------------------------------- /pyscreenshot/childproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/childproc.py -------------------------------------------------------------------------------- /pyscreenshot/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyscreenshot/cli/grab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/cli/grab.py -------------------------------------------------------------------------------- /pyscreenshot/cli/print_backend_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/cli/print_backend_version.py -------------------------------------------------------------------------------- /pyscreenshot/err.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/err.py -------------------------------------------------------------------------------- /pyscreenshot/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyscreenshot/examples/grabbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/examples/grabbox.py -------------------------------------------------------------------------------- /pyscreenshot/examples/grabfullscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/examples/grabfullscreen.py -------------------------------------------------------------------------------- /pyscreenshot/examples/virtdisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/examples/virtdisp.py -------------------------------------------------------------------------------- /pyscreenshot/imcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/imcodec.py -------------------------------------------------------------------------------- /pyscreenshot/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/loader.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyscreenshot/plugins/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/backend.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/freedesktop_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/freedesktop_dbus.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/gdk3pixbuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/gdk3pixbuf.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/gnome_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/gnome_dbus.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/gnome_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/gnome_screenshot.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/grim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/grim.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/imagemagick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/imagemagick.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/ksnip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/ksnip.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/kwin_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/kwin_dbus.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/mac_quartz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/mac_quartz.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/mac_screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/mac_screencapture.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/maim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/maim.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/msswrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/msswrap.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/pilwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/pilwrap.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/pyside2_grabwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/pyside2_grabwindow.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/pyside_grabwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/pyside_grabwindow.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/qt4grabwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/qt4grabwindow.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/qt5grabwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/qt5grabwindow.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/scrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/scrot.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/wxscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/wxscreen.py -------------------------------------------------------------------------------- /pyscreenshot/plugins/xwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/plugins/xwd.py -------------------------------------------------------------------------------- /pyscreenshot/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyscreenshot/tempexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/tempexport.py -------------------------------------------------------------------------------- /pyscreenshot/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pyscreenshot/util.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/requirements-doc.txt -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/bt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/bt.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/double_disp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/double_disp.py -------------------------------------------------------------------------------- /tests/fillscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/fillscreen.py -------------------------------------------------------------------------------- /tests/fillscreen_pygame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/fillscreen_pygame.py -------------------------------------------------------------------------------- /tests/fillscreen_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/fillscreen_tk.py -------------------------------------------------------------------------------- /tests/genimg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/genimg.py -------------------------------------------------------------------------------- /tests/image_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/image_debug.py -------------------------------------------------------------------------------- /tests/notest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/size.py -------------------------------------------------------------------------------- /tests/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_check.py -------------------------------------------------------------------------------- /tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_default.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_freedesktop_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_freedesktop_dbus.py -------------------------------------------------------------------------------- /tests/test_gnome_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_gnome_dbus.py -------------------------------------------------------------------------------- /tests/test_grim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_grim.py -------------------------------------------------------------------------------- /tests/test_imagemagick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_imagemagick.py -------------------------------------------------------------------------------- /tests/test_ksnip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_ksnip.py -------------------------------------------------------------------------------- /tests/test_kwin_dbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_kwin_dbus.py -------------------------------------------------------------------------------- /tests/test_mac_quartz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_mac_quartz.py -------------------------------------------------------------------------------- /tests/test_mac_screencapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_mac_screencapture.py -------------------------------------------------------------------------------- /tests/test_maim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_maim.py -------------------------------------------------------------------------------- /tests/test_mss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_mss.py -------------------------------------------------------------------------------- /tests/test_pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_pil.py -------------------------------------------------------------------------------- /tests/test_pygdk3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_pygdk3.py -------------------------------------------------------------------------------- /tests/test_pyqt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_pyqt4.py -------------------------------------------------------------------------------- /tests/test_pyqt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_pyqt5.py -------------------------------------------------------------------------------- /tests/test_pyside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_pyside.py -------------------------------------------------------------------------------- /tests/test_pyside2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_pyside2.py -------------------------------------------------------------------------------- /tests/test_scrot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_scrot.py -------------------------------------------------------------------------------- /tests/test_wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_wx.py -------------------------------------------------------------------------------- /tests/test_x_gnome_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/test_x_gnome_screenshot.py -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian10.gnome.wayland.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian10.gnome.wayland.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian10.gnome.x11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian10.gnome.x11.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian10.kde.wayland.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian10.kde.wayland.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian10.kde.x11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian10.kde.x11.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian11.gnome.wayland.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian11.gnome.wayland.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian11.gnome.x11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian11.gnome.x11.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian11.kde.wayland.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian11.kde.wayland.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.debian11.kde.x11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.debian11.kde.x11.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.kubuntu.20.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.kubuntu.20.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.kubuntu.22.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.kubuntu.22.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.kubuntu.22.10.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.kubuntu.22.10.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.lubuntu.20.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.lubuntu.20.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.lubuntu.22.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.lubuntu.22.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.lubuntu.22.10.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.lubuntu.22.10.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.ubuntu.20.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.ubuntu.20.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.ubuntu.22.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.ubuntu.22.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.ubuntu.22.04.sway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.ubuntu.22.04.sway.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.ubuntu.22.10.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.ubuntu.22.10.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.ubuntu.server.22.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.ubuntu.server.22.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.xubuntu.20.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.xubuntu.20.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.xubuntu.22.04.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.xubuntu.22.04.rb -------------------------------------------------------------------------------- /tests/vagrant/Vagrantfile.xubuntu.22.10.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/Vagrantfile.xubuntu.22.10.rb -------------------------------------------------------------------------------- /tests/vagrant/debian10.gnome.wayland.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/debian10.gnome.wayland.sh -------------------------------------------------------------------------------- /tests/vagrant/debian10.gnome.x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/debian10.gnome.x11.sh -------------------------------------------------------------------------------- /tests/vagrant/debian10.kde.wayland.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/debian10.kde.wayland.sh -------------------------------------------------------------------------------- /tests/vagrant/debian10.kde.x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/debian10.kde.x11.sh -------------------------------------------------------------------------------- /tests/vagrant/debian10_kde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/debian10_kde.sh -------------------------------------------------------------------------------- /tests/vagrant/gdm3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/gdm3.sh -------------------------------------------------------------------------------- /tests/vagrant/kubuntu.20.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/kubuntu.20.04.sh -------------------------------------------------------------------------------- /tests/vagrant/kubuntu.22.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/kubuntu.22.04.sh -------------------------------------------------------------------------------- /tests/vagrant/kubuntu.22.10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/kubuntu.22.10.sh -------------------------------------------------------------------------------- /tests/vagrant/lightdm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/lightdm.sh -------------------------------------------------------------------------------- /tests/vagrant/lubuntu.20.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/lubuntu.20.04.sh -------------------------------------------------------------------------------- /tests/vagrant/lubuntu.22.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/lubuntu.22.04.sh -------------------------------------------------------------------------------- /tests/vagrant/lubuntu.22.10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/lubuntu.22.10.sh -------------------------------------------------------------------------------- /tests/vagrant/osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/osx.sh -------------------------------------------------------------------------------- /tests/vagrant/osx1015.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/osx1015.1.sh -------------------------------------------------------------------------------- /tests/vagrant/osx1015.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/osx1015.2.sh -------------------------------------------------------------------------------- /tests/vagrant/osx1015.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/osx1015.sh -------------------------------------------------------------------------------- /tests/vagrant/ubudep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/ubudep.sh -------------------------------------------------------------------------------- /tests/vagrant/ubuntu.20.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/ubuntu.20.04.sh -------------------------------------------------------------------------------- /tests/vagrant/ubuntu.22.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/ubuntu.22.04.sh -------------------------------------------------------------------------------- /tests/vagrant/ubuntu.22.04.sway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/ubuntu.22.04.sway.sh -------------------------------------------------------------------------------- /tests/vagrant/ubuntu.22.10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/ubuntu.22.10.sh -------------------------------------------------------------------------------- /tests/vagrant/ubuntu.server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/ubuntu.server.sh -------------------------------------------------------------------------------- /tests/vagrant/vagrant_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/vagrant_boxes.py -------------------------------------------------------------------------------- /tests/vagrant/win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/win.sh -------------------------------------------------------------------------------- /tests/vagrant/xubuntu.20.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/xubuntu.20.04.sh -------------------------------------------------------------------------------- /tests/vagrant/xubuntu.22.04.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/xubuntu.22.04.sh -------------------------------------------------------------------------------- /tests/vagrant/xubuntu.22.10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tests/vagrant/xubuntu.22.10.sh -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponty/pyscreenshot/HEAD/tox.ini --------------------------------------------------------------------------------