types-PyMySQL 1.1.0.0__tar.gz → 1.1.0.20240425__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-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/CHANGELOG.md +10 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/PKG-INFO +13 -7
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/METADATA.toml +1 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/connections.pyi +2 -1
- types-PyMySQL-1.1.0.20240425/pymysql-stubs/py.typed +1 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/setup.py +13 -7
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/types_PyMySQL.egg-info/PKG-INFO +13 -7
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/types_PyMySQL.egg-info/SOURCES.txt +1 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/MANIFEST.in +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/__init__.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/charset.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/CLIENT.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/COMMAND.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/CR.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/ER.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/FIELD_TYPE.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/FLAG.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/SERVER_STATUS.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/__init__.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/converters.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/cursors.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/err.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/times.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/util.pyi +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/setup.cfg +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/types_PyMySQL.egg-info/dependency_links.txt +0 -0
- {types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/types_PyMySQL.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-PyMySQL
|
|
3
|
-
Version: 1.1.0.
|
|
3
|
+
Version: 1.1.0.20240425
|
|
4
4
|
Summary: Typing stubs for PyMySQL
|
|
5
5
|
Home-page: https://github.com/python/typeshed
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -11,17 +11,23 @@ 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.8
|
|
14
15
|
Description-Content-Type: text/markdown
|
|
15
16
|
|
|
16
17
|
## Typing stubs for PyMySQL
|
|
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 [`PyMySQL`](https://github.com/PyMySQL/PyMySQL) 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
|
-
`PyMySQL`.
|
|
26
|
+
`PyMySQL`.
|
|
27
|
+
|
|
28
|
+
This version of `types-PyMySQL` aims to provide accurate annotations
|
|
29
|
+
for `PyMySQL==1.1.*`.
|
|
30
|
+
The source for this package can be found at
|
|
25
31
|
https://github.com/python/typeshed/tree/main/stubs/PyMySQL. All fixes for
|
|
26
32
|
types and metadata should be contributed there.
|
|
27
33
|
|
|
@@ -30,6 +36,6 @@ If you find that annotations are missing, feel free to contribute and help compl
|
|
|
30
36
|
|
|
31
37
|
|
|
32
38
|
See https://github.com/python/typeshed/blob/main/README.md for more details.
|
|
33
|
-
This package was generated from typeshed commit `
|
|
34
|
-
with mypy 1.
|
|
35
|
-
pytype
|
|
39
|
+
This package was generated from typeshed commit `273e9ea6ddc2d5cad2db7dd25a0383a61be15675` and was tested
|
|
40
|
+
with mypy 1.10.0, pyright 1.1.360, and
|
|
41
|
+
pytype 2024.4.11.
|
|
@@ -124,7 +124,8 @@ class Connection(Generic[_C]):
|
|
|
124
124
|
) -> None: ...
|
|
125
125
|
@overload
|
|
126
126
|
def __init__(
|
|
127
|
-
|
|
127
|
+
# different between overloads:
|
|
128
|
+
self: Connection[_C], # pyright: ignore[reportInvalidTypeVarUse] #11780
|
|
128
129
|
*,
|
|
129
130
|
host: str | None = None,
|
|
130
131
|
user: Incomplete | None = None,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
partial
|
|
@@ -5,13 +5,18 @@ description = "Typing stubs for PyMySQL"
|
|
|
5
5
|
long_description = '''
|
|
6
6
|
## Typing stubs for PyMySQL
|
|
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 [`PyMySQL`](https://github.com/PyMySQL/PyMySQL) 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
|
-
`PyMySQL`.
|
|
15
|
+
`PyMySQL`.
|
|
16
|
+
|
|
17
|
+
This version of `types-PyMySQL` aims to provide accurate annotations
|
|
18
|
+
for `PyMySQL==1.1.*`.
|
|
19
|
+
The source for this package can be found at
|
|
15
20
|
https://github.com/python/typeshed/tree/main/stubs/PyMySQL. All fixes for
|
|
16
21
|
types and metadata should be contributed there.
|
|
17
22
|
|
|
@@ -20,13 +25,13 @@ If you find that annotations are missing, feel free to contribute and help compl
|
|
|
20
25
|
|
|
21
26
|
|
|
22
27
|
See https://github.com/python/typeshed/blob/main/README.md for more details.
|
|
23
|
-
This package was generated from typeshed commit `
|
|
24
|
-
with mypy 1.
|
|
25
|
-
pytype
|
|
28
|
+
This package was generated from typeshed commit `273e9ea6ddc2d5cad2db7dd25a0383a61be15675` and was tested
|
|
29
|
+
with mypy 1.10.0, pyright 1.1.360, and
|
|
30
|
+
pytype 2024.4.11.
|
|
26
31
|
'''.lstrip()
|
|
27
32
|
|
|
28
33
|
setup(name=name,
|
|
29
|
-
version="1.1.0.
|
|
34
|
+
version="1.1.0.20240425",
|
|
30
35
|
description=description,
|
|
31
36
|
long_description=long_description,
|
|
32
37
|
long_description_content_type="text/markdown",
|
|
@@ -41,6 +46,7 @@ setup(name=name,
|
|
|
41
46
|
packages=['pymysql-stubs'],
|
|
42
47
|
package_data={'pymysql-stubs': ['__init__.pyi', 'charset.pyi', 'connections.pyi', 'constants/CLIENT.pyi', 'constants/COMMAND.pyi', 'constants/CR.pyi', 'constants/ER.pyi', 'constants/FIELD_TYPE.pyi', 'constants/FLAG.pyi', 'constants/SERVER_STATUS.pyi', 'constants/__init__.pyi', 'converters.pyi', 'cursors.pyi', 'err.pyi', 'times.pyi', 'util.pyi', 'METADATA.toml', 'py.typed']},
|
|
43
48
|
license="Apache-2.0 license",
|
|
49
|
+
python_requires=">=3.8",
|
|
44
50
|
classifiers=[
|
|
45
51
|
"License :: OSI Approved :: Apache Software License",
|
|
46
52
|
"Programming Language :: Python :: 3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-PyMySQL
|
|
3
|
-
Version: 1.1.0.
|
|
3
|
+
Version: 1.1.0.20240425
|
|
4
4
|
Summary: Typing stubs for PyMySQL
|
|
5
5
|
Home-page: https://github.com/python/typeshed
|
|
6
6
|
License: Apache-2.0 license
|
|
@@ -11,17 +11,23 @@ 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.8
|
|
14
15
|
Description-Content-Type: text/markdown
|
|
15
16
|
|
|
16
17
|
## Typing stubs for PyMySQL
|
|
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 [`PyMySQL`](https://github.com/PyMySQL/PyMySQL) 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
|
-
`PyMySQL`.
|
|
26
|
+
`PyMySQL`.
|
|
27
|
+
|
|
28
|
+
This version of `types-PyMySQL` aims to provide accurate annotations
|
|
29
|
+
for `PyMySQL==1.1.*`.
|
|
30
|
+
The source for this package can be found at
|
|
25
31
|
https://github.com/python/typeshed/tree/main/stubs/PyMySQL. All fixes for
|
|
26
32
|
types and metadata should be contributed there.
|
|
27
33
|
|
|
@@ -30,6 +36,6 @@ If you find that annotations are missing, feel free to contribute and help compl
|
|
|
30
36
|
|
|
31
37
|
|
|
32
38
|
See https://github.com/python/typeshed/blob/main/README.md for more details.
|
|
33
|
-
This package was generated from typeshed commit `
|
|
34
|
-
with mypy 1.
|
|
35
|
-
pytype
|
|
39
|
+
This package was generated from typeshed commit `273e9ea6ddc2d5cad2db7dd25a0383a61be15675` and was tested
|
|
40
|
+
with mypy 1.10.0, pyright 1.1.360, and
|
|
41
|
+
pytype 2024.4.11.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/FIELD_TYPE.pyi
RENAMED
|
File without changes
|
|
File without changes
|
{types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/pymysql-stubs/constants/SERVER_STATUS.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{types-PyMySQL-1.1.0.0 → types-PyMySQL-1.1.0.20240425}/types_PyMySQL.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|