All Projects → BoboTiG → Python Mss

BoboTiG / Python Mss

Licence: mit
An ultra fast cross-platform multiple screenshots module in pure Python using ctypes.

Programming Languages

python
139335 projects - #7 most used programming language
ctypes
15 projects

Projects that are alternatives of or similar to Python Mss

Flameshot
Powerful yet simple to use screenshot software 🖥️ 📸
Stars: ✭ 15,429 (+2551.03%)
Mutual labels:  screenshot, cross-platform, gnu-linux
ArcoLinux-dotfiles
ArcoLinux dotfiles for 2bwm / i3wm
Stars: ✭ 24 (-95.88%)
Mutual labels:  screenshot, monitor
Desktopmagic
Robust multi-monitor screenshot grabbing library for Python 2.x/3.x on Windows
Stars: ✭ 52 (-91.07%)
Mutual labels:  screenshot, monitor
Screen capture lite
cross platform screen/window capturing library
Stars: ✭ 340 (-41.58%)
Mutual labels:  screenshot, cross-platform
Saldl
A lightweight well-featured CLI downloader optimized for speed and early preview.
Stars: ✭ 203 (-65.12%)
Mutual labels:  cli, cross-platform
Stonky
A command line dashboard for monitoring stocks
Stars: ✭ 208 (-64.26%)
Mutual labels:  cli, monitor
Singlefile
Web Extension for Firefox/Chrome/MS Edge and CLI tool to save a faithful copy of an entire web page in a single HTML file
Stars: ✭ 4,417 (+658.93%)
Mutual labels:  cli, screenshot
Bottom
Yet another cross-platform graphical process/system monitor.
Stars: ✭ 3,182 (+446.74%)
Mutual labels:  cli, cross-platform
Ffcast
Run command on rectangular screen regions
Stars: ✭ 478 (-17.87%)
Mutual labels:  cli, screenshot
Airshare
Cross-platform content sharing in a local network
Stars: ✭ 497 (-14.6%)
Mutual labels:  cli, cross-platform
Topydo
A powerful todo list application for the console, using the todo.txt format.
Stars: ✭ 511 (-12.2%)
Mutual labels:  cli, cross-platform
Termuxarch
Experience the pleasure of the Linux command prompt in Android, Chromebook, Fire OS and Windows on smartphone, smartTV, tablet and wearable https://termuxarch.github.io/TermuxArch/
Stars: ✭ 183 (-68.56%)
Mutual labels:  cli, screenshot
Proji
A powerful cross-platform CLI project templating tool.
Stars: ✭ 156 (-73.2%)
Mutual labels:  cli, cross-platform
Forge
F# CLI tool for project, file, and solution management
Stars: ✭ 233 (-59.97%)
Mutual labels:  cli, cross-platform
Abandon
😌 Simple and Robust Accounting
Stars: ✭ 155 (-73.37%)
Mutual labels:  cli, cross-platform
Eiskaltdcpp
File sharing program using DC and ADC protocols
Stars: ✭ 277 (-52.41%)
Mutual labels:  cli, cross-platform
Screencloud
Screenshot sharing application for Windows, Mac and Linux.
Stars: ✭ 537 (-7.73%)
Mutual labels:  screenshot, cross-platform
Centerline
Calculate the polygon's centerline
Stars: ✭ 94 (-83.85%)
Mutual labels:  cli, screenshot
Site Scan
CLI for capturing website screenshots, powered by puppeteer.
Stars: ✭ 137 (-76.46%)
Mutual labels:  cli, screenshot
Slurp
Select a region in a Wayland compositor
Stars: ✭ 350 (-39.86%)
Mutual labels:  cli, screenshot

Python MSS

.. image:: https://travis-ci.org/BoboTiG/python-mss.svg?branch=master :target: https://travis-ci.org/BoboTiG/python-mss .. image:: https://ci.appveyor.com/api/projects/status/72dik18r6b746mb0?svg=true :target: https://ci.appveyor.com/project/BoboTiG/python-mss .. image:: https://img.shields.io/badge/say-thanks-ff69b4.svg :target: https://saythanks.io/to/BoboTiG .. image:: https://pepy.tech/badge/mss :target: https://pepy.tech/project/mss .. image:: https://anaconda.org/conda-forge/python-mss/badges/installer/conda.svg :target: https://anaconda.org/conda-forge/python-mss

.. code-block:: python

from mss import mss

# The simplest use, save a screen shot of the 1st monitor
with mss() as sct:
    sct.shot()

An ultra fast cross-platform multiple screenshots module in pure python using ctypes.

  • Python 3.5+ and PEP8 compliant, no dependency, thread-safe;
  • very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
  • but you can use PIL and benefit from all its formats (or add yours directly);
  • integrate well with Numpy and OpenCV;
  • it could be easily embedded into games and other software which require fast and platform optimized methods to grab screen shots (like AI, Computer Vision);
  • get the source code on GitHub <https://github.com/BoboTiG/python-mss>_;
  • learn with a bunch of examples <https://python-mss.readthedocs.io/examples.html>_;
  • you can report a bug <https://github.com/BoboTiG/python-mss/issues>_;
  • need some help? Use the tag python-mss on StackOverflow <https://stackoverflow.com/questions/tagged/python-mss>_;
  • and there is a complete, and beautiful, documentation <https://python-mss.readthedocs.io>_ :)
  • MSS stands for Multiple Screen Shots;

Installation

You can install it with pip::

python -m pip install -U --user mss

Or you can install it with conda::

conda install -c conda-forge python-mss
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].