types-PyAutoGUI 0.9.3.7__tar.gz → 0.9.3.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/CHANGELOG.md +4 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/PKG-INFO +13 -7
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/pyautogui-stubs/__init__.pyi +5 -1
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/setup.py +13 -7
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/types_PyAutoGUI.egg-info/PKG-INFO +13 -7
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/MANIFEST.in +0 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/pyautogui-stubs/METADATA.toml +0 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/setup.cfg +0 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/types_PyAutoGUI.egg-info/SOURCES.txt +0 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/types_PyAutoGUI.egg-info/dependency_links.txt +0 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/types_PyAutoGUI.egg-info/requires.txt +0 -0
- {types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/types_PyAutoGUI.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-PyAutoGUI
|
|
3
|
-
Version: 0.9.3.
|
|
3
|
+
Version: 0.9.3.8
|
|
4
4
|
Summary: Typing stubs for PyAutoGUI
|
|
5
5
|
Home-page: https://github.com/python/typeshed
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -11,21 +11,27 @@ Project-URL: Chat, https://gitter.im/python/typing
|
|
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: Typing :: Stubs Only
|
|
14
|
+
Requires-Python: >=3.7
|
|
14
15
|
Description-Content-Type: text/markdown
|
|
15
16
|
|
|
16
17
|
## Typing stubs for PyAutoGUI
|
|
17
18
|
|
|
18
|
-
This is a PEP 561
|
|
19
|
-
|
|
19
|
+
This is a [PEP 561](https://peps.python.org/pep-0561/)
|
|
20
|
+
type stub package for the [`PyAutoGUI`](https://github.com/asweigart/pyautogui) package.
|
|
21
|
+
It can be used by type-checking tools like
|
|
20
22
|
[mypy](https://github.com/python/mypy/),
|
|
21
23
|
[pyright](https://github.com/microsoft/pyright),
|
|
22
24
|
[pytype](https://github.com/google/pytype/),
|
|
23
25
|
PyCharm, etc. to check code that uses
|
|
24
|
-
`PyAutoGUI`.
|
|
26
|
+
`PyAutoGUI`.
|
|
27
|
+
|
|
28
|
+
This version of `types-PyAutoGUI` aims to provide accurate annotations
|
|
29
|
+
for `PyAutoGUI==0.9.*`.
|
|
30
|
+
The source for this package can be found at
|
|
25
31
|
https://github.com/python/typeshed/tree/main/stubs/PyAutoGUI. All fixes for
|
|
26
32
|
types and metadata should be contributed there.
|
|
27
33
|
|
|
28
34
|
See https://github.com/python/typeshed/blob/main/README.md for more details.
|
|
29
|
-
This package was generated from typeshed commit `
|
|
30
|
-
with mypy 1.
|
|
31
|
-
pytype 2023.
|
|
35
|
+
This package was generated from typeshed commit `7bdf6ba85ceeebfaf68f632fe0a02f08ce457694` and was tested
|
|
36
|
+
with mypy 1.7.1, pyright 1.1.339, and
|
|
37
|
+
pytype 2023.12.8.
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import contextlib
|
|
2
|
+
from _typeshed import ConvertibleToInt
|
|
2
3
|
from collections.abc import Callable, Iterable, Sequence
|
|
3
4
|
from datetime import datetime
|
|
4
5
|
from typing import NamedTuple, SupportsInt, TypeVar
|
|
@@ -19,7 +20,10 @@ from pyscreeze import (
|
|
|
19
20
|
|
|
20
21
|
_P = ParamSpec("_P")
|
|
21
22
|
_R = TypeVar("_R")
|
|
22
|
-
|
|
23
|
+
# Explicitly mentioning str despite being in the ConvertibleToInt Alias because it has a different meaning (filename on screen)
|
|
24
|
+
# Specifying non-None Y arg when X is a string or sequence raises an error
|
|
25
|
+
# TODO: This could be better represented through overloads
|
|
26
|
+
_NormalizeableXArg: TypeAlias = str | ConvertibleToInt | Sequence[ConvertibleToInt]
|
|
23
27
|
|
|
24
28
|
# Constants
|
|
25
29
|
KEY_NAMES: list[str]
|
|
@@ -5,24 +5,29 @@ description = "Typing stubs for PyAutoGUI"
|
|
|
5
5
|
long_description = '''
|
|
6
6
|
## Typing stubs for PyAutoGUI
|
|
7
7
|
|
|
8
|
-
This is a PEP 561
|
|
9
|
-
|
|
8
|
+
This is a [PEP 561](https://peps.python.org/pep-0561/)
|
|
9
|
+
type stub package for the [`PyAutoGUI`](https://github.com/asweigart/pyautogui) package.
|
|
10
|
+
It can be used by type-checking tools like
|
|
10
11
|
[mypy](https://github.com/python/mypy/),
|
|
11
12
|
[pyright](https://github.com/microsoft/pyright),
|
|
12
13
|
[pytype](https://github.com/google/pytype/),
|
|
13
14
|
PyCharm, etc. to check code that uses
|
|
14
|
-
`PyAutoGUI`.
|
|
15
|
+
`PyAutoGUI`.
|
|
16
|
+
|
|
17
|
+
This version of `types-PyAutoGUI` aims to provide accurate annotations
|
|
18
|
+
for `PyAutoGUI==0.9.*`.
|
|
19
|
+
The source for this package can be found at
|
|
15
20
|
https://github.com/python/typeshed/tree/main/stubs/PyAutoGUI. All fixes for
|
|
16
21
|
types and metadata should be contributed there.
|
|
17
22
|
|
|
18
23
|
See https://github.com/python/typeshed/blob/main/README.md for more details.
|
|
19
|
-
This package was generated from typeshed commit `
|
|
20
|
-
with mypy 1.
|
|
21
|
-
pytype 2023.
|
|
24
|
+
This package was generated from typeshed commit `7bdf6ba85ceeebfaf68f632fe0a02f08ce457694` and was tested
|
|
25
|
+
with mypy 1.7.1, pyright 1.1.339, and
|
|
26
|
+
pytype 2023.12.8.
|
|
22
27
|
'''.lstrip()
|
|
23
28
|
|
|
24
29
|
setup(name=name,
|
|
25
|
-
version="0.9.3.
|
|
30
|
+
version="0.9.3.8",
|
|
26
31
|
description=description,
|
|
27
32
|
long_description=long_description,
|
|
28
33
|
long_description_content_type="text/markdown",
|
|
@@ -37,6 +42,7 @@ setup(name=name,
|
|
|
37
42
|
packages=['pyautogui-stubs'],
|
|
38
43
|
package_data={'pyautogui-stubs': ['__init__.pyi', 'METADATA.toml']},
|
|
39
44
|
license="Apache-2.0 license",
|
|
45
|
+
python_requires=">=3.7",
|
|
40
46
|
classifiers=[
|
|
41
47
|
"License :: OSI Approved :: Apache Software License",
|
|
42
48
|
"Programming Language :: Python :: 3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-PyAutoGUI
|
|
3
|
-
Version: 0.9.3.
|
|
3
|
+
Version: 0.9.3.8
|
|
4
4
|
Summary: Typing stubs for PyAutoGUI
|
|
5
5
|
Home-page: https://github.com/python/typeshed
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -11,21 +11,27 @@ Project-URL: Chat, https://gitter.im/python/typing
|
|
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: Typing :: Stubs Only
|
|
14
|
+
Requires-Python: >=3.7
|
|
14
15
|
Description-Content-Type: text/markdown
|
|
15
16
|
|
|
16
17
|
## Typing stubs for PyAutoGUI
|
|
17
18
|
|
|
18
|
-
This is a PEP 561
|
|
19
|
-
|
|
19
|
+
This is a [PEP 561](https://peps.python.org/pep-0561/)
|
|
20
|
+
type stub package for the [`PyAutoGUI`](https://github.com/asweigart/pyautogui) package.
|
|
21
|
+
It can be used by type-checking tools like
|
|
20
22
|
[mypy](https://github.com/python/mypy/),
|
|
21
23
|
[pyright](https://github.com/microsoft/pyright),
|
|
22
24
|
[pytype](https://github.com/google/pytype/),
|
|
23
25
|
PyCharm, etc. to check code that uses
|
|
24
|
-
`PyAutoGUI`.
|
|
26
|
+
`PyAutoGUI`.
|
|
27
|
+
|
|
28
|
+
This version of `types-PyAutoGUI` aims to provide accurate annotations
|
|
29
|
+
for `PyAutoGUI==0.9.*`.
|
|
30
|
+
The source for this package can be found at
|
|
25
31
|
https://github.com/python/typeshed/tree/main/stubs/PyAutoGUI. All fixes for
|
|
26
32
|
types and metadata should be contributed there.
|
|
27
33
|
|
|
28
34
|
See https://github.com/python/typeshed/blob/main/README.md for more details.
|
|
29
|
-
This package was generated from typeshed commit `
|
|
30
|
-
with mypy 1.
|
|
31
|
-
pytype 2023.
|
|
35
|
+
This package was generated from typeshed commit `7bdf6ba85ceeebfaf68f632fe0a02f08ce457694` and was tested
|
|
36
|
+
with mypy 1.7.1, pyright 1.1.339, and
|
|
37
|
+
pytype 2023.12.8.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{types-PyAutoGUI-0.9.3.7 → types-PyAutoGUI-0.9.3.8}/types_PyAutoGUI.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|