types-tqdm 4.67.0.20250516__py3-none-any.whl → 4.67.2.20260202__py3-none-any.whl
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.
- tqdm-stubs/METADATA.toml +1 -1
- tqdm-stubs/dask.pyi +2 -1
- tqdm-stubs/rich.pyi +2 -1
- tqdm-stubs/std.pyi +1 -1
- tqdm-stubs/utils.pyi +2 -1
- {types_tqdm-4.67.0.20250516.dist-info → types_tqdm-4.67.2.20260202.dist-info}/METADATA +10 -15
- {types_tqdm-4.67.0.20250516.dist-info → types_tqdm-4.67.2.20260202.dist-info}/RECORD +10 -11
- {types_tqdm-4.67.0.20250516.dist-info → types_tqdm-4.67.2.20260202.dist-info}/WHEEL +1 -1
- tqdm-stubs/_dist_ver.pyi +0 -0
- {types_tqdm-4.67.0.20250516.dist-info → types_tqdm-4.67.2.20260202.dist-info}/licenses/LICENSE +0 -0
- {types_tqdm-4.67.0.20250516.dist-info → types_tqdm-4.67.2.20260202.dist-info}/top_level.txt +0 -0
tqdm-stubs/METADATA.toml
CHANGED
tqdm-stubs/dask.pyi
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
2
|
from collections.abc import Callable
|
|
3
|
-
from typing import ClassVar
|
|
3
|
+
from typing import ClassVar, type_check_only
|
|
4
4
|
from typing_extensions import Self
|
|
5
5
|
|
|
6
6
|
__all__ = ["TqdmCallback"]
|
|
7
7
|
|
|
8
8
|
# dask.callbacks.Callback
|
|
9
|
+
@type_check_only
|
|
9
10
|
class _Callback:
|
|
10
11
|
active: ClassVar[set[tuple[Callable[..., Incomplete] | None, ...]]]
|
|
11
12
|
def __init__(
|
tqdm-stubs/rich.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from _typeshed import Incomplete, SupportsWrite
|
|
2
2
|
from abc import ABC, abstractmethod
|
|
3
3
|
from collections.abc import Iterable, Mapping
|
|
4
|
-
from typing import NoReturn, TypeVar, overload
|
|
4
|
+
from typing import NoReturn, TypeVar, overload, type_check_only
|
|
5
5
|
|
|
6
6
|
from .std import tqdm as std_tqdm
|
|
7
7
|
|
|
@@ -10,6 +10,7 @@ __all__ = ["tqdm_rich", "trrange", "tqdm", "trange"]
|
|
|
10
10
|
_T = TypeVar("_T")
|
|
11
11
|
|
|
12
12
|
# Actually rich.progress.ProgressColumn
|
|
13
|
+
@type_check_only
|
|
13
14
|
class _ProgressColumn(ABC):
|
|
14
15
|
max_refresh: float | None
|
|
15
16
|
def __init__(self, table_column: Incomplete | None = ...) -> None: ...
|
tqdm-stubs/std.pyi
CHANGED
|
@@ -23,7 +23,7 @@ class TqdmTypeError(TypeError): ...
|
|
|
23
23
|
class TqdmKeyError(KeyError): ...
|
|
24
24
|
|
|
25
25
|
class TqdmWarning(Warning):
|
|
26
|
-
def __init__(self, msg, fp_write=None
|
|
26
|
+
def __init__(self, msg, fp_write=None) -> None: ...
|
|
27
27
|
|
|
28
28
|
class TqdmExperimentalWarning(TqdmWarning, FutureWarning): ...
|
|
29
29
|
class TqdmDeprecationWarning(TqdmWarning, DeprecationWarning): ...
|
tqdm-stubs/utils.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
2
|
from collections.abc import Callable, Mapping
|
|
3
3
|
from re import Pattern
|
|
4
|
-
from typing import Protocol, TypeVar
|
|
4
|
+
from typing import Protocol, TypeVar, type_check_only
|
|
5
5
|
from typing_extensions import ParamSpec
|
|
6
6
|
|
|
7
7
|
CUR_OS: str
|
|
@@ -15,6 +15,7 @@ class FormatReplace:
|
|
|
15
15
|
def __init__(self, replace: str = "") -> None: ...
|
|
16
16
|
def __format__(self, _) -> str: ...
|
|
17
17
|
|
|
18
|
+
@type_check_only
|
|
18
19
|
class _Has__Comparable(Protocol):
|
|
19
20
|
_comparable: Incomplete
|
|
20
21
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-tqdm
|
|
3
|
-
Version: 4.67.
|
|
3
|
+
Version: 4.67.2.20260202
|
|
4
4
|
Summary: Typing stubs for tqdm
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://github.com/python/typeshed
|
|
@@ -18,16 +18,11 @@ Dynamic: license-file
|
|
|
18
18
|
|
|
19
19
|
## Typing stubs for tqdm
|
|
20
20
|
|
|
21
|
-
This is a [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
[mypy](https://github.com/python/mypy/),
|
|
25
|
-
[pyright](https://github.com/microsoft/pyright),
|
|
26
|
-
[pytype](https://github.com/google/pytype/),
|
|
27
|
-
[Pyre](https://pyre-check.org/),
|
|
28
|
-
PyCharm, etc. to check code that uses `tqdm`. This version of
|
|
21
|
+
This is a [type stub package](https://typing.python.org/en/latest/tutorials/external_libraries.html)
|
|
22
|
+
for the [`tqdm`](https://github.com/tqdm/tqdm) package. It can be used by type checkers
|
|
23
|
+
to check code that uses `tqdm`. This version of
|
|
29
24
|
`types-tqdm` aims to provide accurate annotations for
|
|
30
|
-
`tqdm==4.67
|
|
25
|
+
`tqdm==4.67.2`.
|
|
31
26
|
|
|
32
27
|
This package is part of the [typeshed project](https://github.com/python/typeshed).
|
|
33
28
|
All fixes for types and metadata should be contributed there.
|
|
@@ -36,9 +31,9 @@ for more details. The source for this package can be found in the
|
|
|
36
31
|
[`stubs/tqdm`](https://github.com/python/typeshed/tree/main/stubs/tqdm)
|
|
37
32
|
directory.
|
|
38
33
|
|
|
39
|
-
This package was tested with
|
|
40
|
-
mypy 1.
|
|
41
|
-
pyright 1.1.
|
|
42
|
-
|
|
34
|
+
This package was tested with the following type checkers:
|
|
35
|
+
* [mypy](https://github.com/python/mypy/) 1.19.1
|
|
36
|
+
* [pyright](https://github.com/microsoft/pyright) 1.1.408
|
|
37
|
+
|
|
43
38
|
It was generated from typeshed commit
|
|
44
|
-
[`
|
|
39
|
+
[`c01356380fd56b42aa49a0aac8a320437fc7f7b9`](https://github.com/python/typeshed/commit/c01356380fd56b42aa49a0aac8a320437fc7f7b9).
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
tqdm-stubs/METADATA.toml,sha256=
|
|
1
|
+
tqdm-stubs/METADATA.toml,sha256=CC-IcGw9dGqvfEJCtaKaVAbPT_FGwPd6s6ubvBekj5Y,411
|
|
2
2
|
tqdm-stubs/__init__.pyi,sha256=F_z3B-R7slO79sNDtV1XA1APf3_zNGKRaSq9PLWsOIY,1184
|
|
3
|
-
tqdm-stubs/_dist_ver.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
3
|
tqdm-stubs/_main.pyi,sha256=lQug1GjyoUiZ2O4buDFXw_JCc99qxUAlXYHvF0Dp7uo,55
|
|
5
4
|
tqdm-stubs/_monitor.pyi,sha256=aGWlFM795N3Ot_KnxQnvAGbzjNQl--LXQ3XtdFA_gv0,513
|
|
6
5
|
tqdm-stubs/_tqdm.pyi,sha256=4nuRm-d3g85zUaHfZiPsaB3VNthlt6il14Syn8KoM24,105
|
|
@@ -12,15 +11,15 @@ tqdm-stubs/asyncio.pyi,sha256=MlMyvQWS-2-MdeoDHs6dKgEtrq9FFFoveDuh3nQ0nuw,6925
|
|
|
12
11
|
tqdm-stubs/auto.pyi,sha256=8RJDFoPQaBtQ8yT8LPARx10TejsmjNR3cpsfRXI4d7s,82
|
|
13
12
|
tqdm-stubs/autonotebook.pyi,sha256=WrSkCwCPlEr4ddhHaCZCfuGpl8x0hDqoJ3ExQAiaUOk,78
|
|
14
13
|
tqdm-stubs/cli.pyi,sha256=9FlZfH2kM9f8FWUwtJf1BOmB43NM9P-76eBHucdKuLg,123
|
|
15
|
-
tqdm-stubs/dask.pyi,sha256=
|
|
14
|
+
tqdm-stubs/dask.pyi,sha256=u8FOtpIa9iLIUqUWNFBujx5EbE-HWM4j_YzeaSL-fzE,973
|
|
16
15
|
tqdm-stubs/gui.pyi,sha256=qyA3QugzBDjxfBJGiTn-sAT9ZcrLEyBq3cLRxxjW5PY,2868
|
|
17
16
|
tqdm-stubs/keras.pyi,sha256=aaQeZv1UFmWtwEpxQ9EJzVH1PGrBJS228xFGQ_3Hkxk,2199
|
|
18
17
|
tqdm-stubs/notebook.pyi,sha256=NOgkD_f27YuW5Cc-d3dRFs6WUnyMtkd_hOBuPJo2_8s,3316
|
|
19
18
|
tqdm-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
tqdm-stubs/rich.pyi,sha256=
|
|
21
|
-
tqdm-stubs/std.pyi,sha256=
|
|
19
|
+
tqdm-stubs/rich.pyi,sha256=QLjICcJ1McK7BSNhzwJA8bZhJmSfMrh_Q2COAVPfyj0,3493
|
|
20
|
+
tqdm-stubs/std.pyi,sha256=ylKRroTpoK-pu8tGlWAWDMzh59Dd8pinza1UsZEwQ14,10107
|
|
22
21
|
tqdm-stubs/tk.pyi,sha256=5T-knrGbZDgAGoAG35_TFgoImVsaW16Cb6-BS7tbYqM,3082
|
|
23
|
-
tqdm-stubs/utils.pyi,sha256=
|
|
22
|
+
tqdm-stubs/utils.pyi,sha256=eB5gbj-xCDnrurMN94lAFCY76tG6d89gjUNTBf23zYA,2097
|
|
24
23
|
tqdm-stubs/version.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
|
25
24
|
tqdm-stubs/contrib/__init__.pyi,sha256=ohZKkxSutx1NWD96NGfEO-EXSU0tqiPqA1ZPvkjUz4k,643
|
|
26
25
|
tqdm-stubs/contrib/bells.pyi,sha256=oFr86WYz2ffMnvRNWVCF6WxtoDgEeJPHXhUd7dd9j6s,80
|
|
@@ -31,8 +30,8 @@ tqdm-stubs/contrib/logging.pyi,sha256=gXU-1y7GFsoH-zqtxwIQEdocMCl6kWtqAg8qcscgmH
|
|
|
31
30
|
tqdm-stubs/contrib/slack.pyi,sha256=sikJvfoFbWyWVMULWE0uALrvh-kz5KYp_z6sd5sOKx0,3106
|
|
32
31
|
tqdm-stubs/contrib/telegram.pyi,sha256=BMDCPAwPnZvTBUXLuUZXEuqfGAhGWHkyvElddxSgsc0,3296
|
|
33
32
|
tqdm-stubs/contrib/utils_worker.pyi,sha256=C6zWnwLzTFMWEPdLk-EwT2pLRFrJndkqH4MIjJsEcV4,480
|
|
34
|
-
types_tqdm-4.67.
|
|
35
|
-
types_tqdm-4.67.
|
|
36
|
-
types_tqdm-4.67.
|
|
37
|
-
types_tqdm-4.67.
|
|
38
|
-
types_tqdm-4.67.
|
|
33
|
+
types_tqdm-4.67.2.20260202.dist-info/licenses/LICENSE,sha256=KV-FOMlK5cMEMwHPfP8chS2ranhqjd7kceBhtA1eyr4,12657
|
|
34
|
+
types_tqdm-4.67.2.20260202.dist-info/METADATA,sha256=tYl02cWof9QXjUfzub-hrXQtZs5NcP3lH3DN7lId-nk,1724
|
|
35
|
+
types_tqdm-4.67.2.20260202.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
36
|
+
types_tqdm-4.67.2.20260202.dist-info/top_level.txt,sha256=kIt5gMq9VgDZ26WhgdWmbKuKakT0AyLTo-5C-I3j5TM,11
|
|
37
|
+
types_tqdm-4.67.2.20260202.dist-info/RECORD,,
|
tqdm-stubs/_dist_ver.pyi
DELETED
|
File without changes
|
{types_tqdm-4.67.0.20250516.dist-info → types_tqdm-4.67.2.20260202.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|