Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe69e5d

Browse files
authored
Release 3.1.2
1 parent beb43ae commit fe69e5d

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
lines changed

CHANGELOG

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ History:
33
<see Git checking messages for history>
44

55
dev 2018/xx/xx
6+
7+
8+
3.1.2 2018/01/05
69
- removed support for Python 3.3
710
- CI: build the documentation
811
- doc: improvements and fixes (fix #37)
912
- MSS: possibility to get the whole PNG raw bytes
10-
- Windows: capture all visible windows (fix #28, #29)
13+
- Windows: capture all visible windows
1114

1215
3.1.1 2017/11/27
1316
- MSS: add the 'mss' entry point

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Python MSS
1212
from mss import mss
1313
1414
15-
# The simplest use, save a screenshot of the 1st monitor
15+
# The simplest use, save a screen shot of the 1st monitor
1616
with mss() as sct:
1717
sct.shot()
1818
@@ -23,7 +23,7 @@ An ultra fast cross-platform multiple screenshots module in pure python using ct
2323
- very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
2424
- but you can use PIL and benefit from all its formats (or add yours directly);
2525
- integrate well with Numpy and OpenCV;
26-
- it could be easily embedded into games and other softwares which require fast and plateforme optimized methods to grab screenshots (like Computer Vision);
26+
- 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);
2727
- get the `source code on GitHub <https://github.com/BoboTiG/python-mss>`_;
2828
- learn with a `bunch of examples <https://python-mss.readthedocs.io/examples.html>`_;
2929
- you can `report a bug <https://github.com/BoboTiG/python-mss/issues>`_;

docs/source/api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ Methods
9090

9191
.. classmethod:: from_size(cls, data, width, height)
9292

93-
:param bytearray data: raw BGRA pixels retrieved by ctype
93+
:param bytearray data: raw BGRA pixels retrieved by ctypes
9494
OS independent implementations.
9595
:param int width: the monitor's width.
9696
:param int height: the monitor's height.
9797
:rtype: :class:`ScreenShot`
9898

99-
Instanciate a new class given only screen shot's data and size.
99+
Instantiate a new class given only screen shot's data and size.
100100

101101
.. method:: pixels(coord_x, coord_y)
102102

docs/source/examples.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ Examples
55
Basics
66
======
77

8-
One screenshot per monitor
9-
--------------------------
8+
One screen shot per monitor
9+
---------------------------
1010
::
1111

1212
for filename in sct.save():
1313
print(filename)
1414

15-
Screenshot of the monitor 1
16-
---------------------------
15+
Screen shot of the monitor 1
16+
----------------------------
1717
::
1818

1919
filename = sct.shot()
2020
print(filename)
2121

22-
A screenshot to grab them all
23-
-----------------------------
22+
A screen shot to grab them all
23+
------------------------------
2424
::
2525

2626
filename = sct.shot(mon=-1, output='fullscreen.png')
@@ -29,7 +29,7 @@ A screenshot to grab them all
2929
Callback
3030
--------
3131

32-
Screenshot of the monitor 1 with a callback:
32+
Screen shot of the monitor 1 with a callback:
3333

3434
.. literalinclude:: examples/callback.py
3535
:lines: 9-

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Welcome to Python MSS's documentation!
66
from mss import mss
77
88
9-
# The simplest use, save a screenshot of the 1st monitor
9+
# The simplest use, save a screen shot of the 1st monitor
1010
with mss() as sct:
1111
sct.shot()
1212
@@ -17,7 +17,7 @@ An ultra fast cross-platform multiple screenshots module in pure python using ct
1717
- very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
1818
- but you can use PIL and benefit from all its formats (or add yours directly);
1919
- integrate well with Numpy and OpenCV;
20-
- it could be easily embedded into games and other softwares which require fast and plateforme optimized methods to grab screenshots (like Computer Vision);
20+
- 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);
2121
- get the `source code on GitHub <https://github.com/BoboTiG/python-mss>`_;
2222
- learn with a `bunch of examples <https://python-mss.readthedocs.io/examples.html>`_;
2323
- you can `report a bug <https://github.com/BoboTiG/python-mss/issues>`_;

0 commit comments

Comments
 (0)