You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Python MSS
12
12
from mss import mss
13
13
14
14
15
-
# The simplest use, save a screenshot of the 1st monitor
15
+
# The simplest use, save a screen shot of the 1st monitor
16
16
with mss() as sct:
17
17
sct.shot()
18
18
@@ -23,7 +23,7 @@ An ultra fast cross-platform multiple screenshots module in pure python using ct
23
23
- very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
24
24
- but you can use PIL and benefit from all its formats (or add yours directly);
25
25
- 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);
27
27
- get the `source code on GitHub <https://github.com/BoboTiG/python-mss>`_;
28
28
- learn with a `bunch of examples <https://python-mss.readthedocs.io/examples.html>`_;
29
29
- you can `report a bug <https://github.com/BoboTiG/python-mss/issues>`_;
Copy file name to clipboardExpand all lines: docs/source/index.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Welcome to Python MSS's documentation!
6
6
from mss import mss
7
7
8
8
9
-
# The simplest use, save a screenshot of the 1st monitor
9
+
# The simplest use, save a screen shot of the 1st monitor
10
10
with mss() as sct:
11
11
sct.shot()
12
12
@@ -17,7 +17,7 @@ An ultra fast cross-platform multiple screenshots module in pure python using ct
17
17
- very basic, it will grab one screen shot by monitor or a screen shot of all monitors and save it to a PNG file;
18
18
- but you can use PIL and benefit from all its formats (or add yours directly);
19
19
- 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);
21
21
- get the `source code on GitHub <https://github.com/BoboTiG/python-mss>`_;
22
22
- learn with a `bunch of examples <https://python-mss.readthedocs.io/examples.html>`_;
23
23
- you can `report a bug <https://github.com/BoboTiG/python-mss/issues>`_;
0 commit comments