types-tqdm 4.67.0.20250417__py3-none-any.whl → 4.67.0.20250516__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/asyncio.pyi +1 -1
- tqdm-stubs/contrib/__init__.pyi +1 -1
- tqdm-stubs/keras.pyi +2 -10
- tqdm-stubs/std.pyi +1 -1
- tqdm-stubs/tk.pyi +1 -1
- {types_tqdm-4.67.0.20250417.dist-info → types_tqdm-4.67.0.20250516.dist-info}/METADATA +3 -3
- {types_tqdm-4.67.0.20250417.dist-info → types_tqdm-4.67.0.20250516.dist-info}/RECORD +10 -10
- {types_tqdm-4.67.0.20250417.dist-info → types_tqdm-4.67.0.20250516.dist-info}/WHEEL +1 -1
- {types_tqdm-4.67.0.20250417.dist-info → types_tqdm-4.67.0.20250516.dist-info}/licenses/LICENSE +0 -0
- {types_tqdm-4.67.0.20250417.dist-info → types_tqdm-4.67.0.20250516.dist-info}/top_level.txt +0 -0
tqdm-stubs/asyncio.pyi
CHANGED
|
@@ -16,7 +16,7 @@ class tqdm_asyncio(std_tqdm[_T]):
|
|
|
16
16
|
iterable_iterator: Iterator[_T]
|
|
17
17
|
|
|
18
18
|
def __aiter__(self) -> Self: ...
|
|
19
|
-
async def __anext__(self) ->
|
|
19
|
+
async def __anext__(self) -> _T: ...
|
|
20
20
|
def send(self, *args, **kwargs): ...
|
|
21
21
|
@classmethod
|
|
22
22
|
def as_completed(
|
tqdm-stubs/contrib/__init__.pyi
CHANGED
|
@@ -10,6 +10,6 @@ class DummyTqdmFile(ObjectWrapper):
|
|
|
10
10
|
def write(self, x, nolock: bool = False) -> None: ...
|
|
11
11
|
def __del__(self) -> None: ...
|
|
12
12
|
|
|
13
|
-
def tenumerate(iterable, start: int = 0, total
|
|
13
|
+
def tenumerate(iterable, start: int = 0, total=None, tqdm_class: type[Incomplete] = ..., **tqdm_kwargs): ...
|
|
14
14
|
def tzip(iter1, *iter2plus, **tqdm_kwargs) -> Generator[Incomplete, None, None]: ...
|
|
15
15
|
def tmap(function: Callable[..., Incomplete], *sequences, **tqdm_kwargs) -> Generator[Incomplete, None, None]: ...
|
tqdm-stubs/keras.pyi
CHANGED
|
@@ -29,7 +29,7 @@ class _Callback:
|
|
|
29
29
|
|
|
30
30
|
class TqdmCallback(_Callback):
|
|
31
31
|
@staticmethod
|
|
32
|
-
def bar2callback(bar, pop
|
|
32
|
+
def bar2callback(bar, pop=None, delta=...): ...
|
|
33
33
|
tqdm_class: Incomplete
|
|
34
34
|
epoch_bar: Incomplete
|
|
35
35
|
on_epoch_end: Incomplete
|
|
@@ -37,15 +37,7 @@ class TqdmCallback(_Callback):
|
|
|
37
37
|
verbose: Incomplete
|
|
38
38
|
batch_bar: Incomplete
|
|
39
39
|
on_batch_end: Incomplete
|
|
40
|
-
def __init__(
|
|
41
|
-
self,
|
|
42
|
-
epochs: Incomplete | None = None,
|
|
43
|
-
data_size: Incomplete | None = None,
|
|
44
|
-
batch_size: Incomplete | None = None,
|
|
45
|
-
verbose: int = 1,
|
|
46
|
-
tqdm_class=...,
|
|
47
|
-
**tqdm_kwargs,
|
|
48
|
-
) -> None: ...
|
|
40
|
+
def __init__(self, epochs=None, data_size=None, batch_size=None, verbose: int = 1, tqdm_class=..., **tqdm_kwargs) -> None: ...
|
|
49
41
|
def on_train_begin(self, *_, **__) -> None: ...
|
|
50
42
|
def on_epoch_begin(self, epoch, *_, **__) -> None: ...
|
|
51
43
|
def on_train_end(self, *_, **__) -> 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
|
|
26
|
+
def __init__(self, msg, fp_write=None, *a, **k) -> None: ...
|
|
27
27
|
|
|
28
28
|
class TqdmExperimentalWarning(TqdmWarning, FutureWarning): ...
|
|
29
29
|
class TqdmDeprecationWarning(TqdmWarning, DeprecationWarning): ...
|
tqdm-stubs/tk.pyi
CHANGED
|
@@ -85,7 +85,7 @@ class tqdm_tk(std_tqdm[_T]):
|
|
|
85
85
|
desc: Incomplete
|
|
86
86
|
def set_description_str(self, desc: str | None = None, refresh: bool | None = True) -> None: ...
|
|
87
87
|
def cancel(self) -> None: ...
|
|
88
|
-
def reset(self, total
|
|
88
|
+
def reset(self, total=None) -> None: ...
|
|
89
89
|
|
|
90
90
|
def ttkrange(*args, **kwargs) -> tqdm_tk[int]: ...
|
|
91
91
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-tqdm
|
|
3
|
-
Version: 4.67.0.
|
|
3
|
+
Version: 4.67.0.20250516
|
|
4
4
|
Summary: Typing stubs for tqdm
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://github.com/python/typeshed
|
|
@@ -38,7 +38,7 @@ directory.
|
|
|
38
38
|
|
|
39
39
|
This package was tested with
|
|
40
40
|
mypy 1.15.0,
|
|
41
|
-
pyright 1.1.
|
|
41
|
+
pyright 1.1.400,
|
|
42
42
|
and pytype 2024.10.11.
|
|
43
43
|
It was generated from typeshed commit
|
|
44
|
-
[`
|
|
44
|
+
[`126768408a69b7a3a09b7d3992970b289f92937e`](https://github.com/python/typeshed/commit/126768408a69b7a3a09b7d3992970b289f92937e).
|
|
@@ -8,21 +8,21 @@ tqdm-stubs/_tqdm_gui.pyi,sha256=4QZhkxig3ZUHeV6Ph2ZpHmIRpb19m51QBw-mvsXpboQ,55
|
|
|
8
8
|
tqdm-stubs/_tqdm_notebook.pyi,sha256=i9TckDXdx0gbto98pIDNNob5KBmjj8X9nryd_AUDvRU,65
|
|
9
9
|
tqdm-stubs/_tqdm_pandas.pyi,sha256=9higdSEn2RYFameXBXsN6Myl3-t5UpTgAyfFhnhdxkk,79
|
|
10
10
|
tqdm-stubs/_utils.pyi,sha256=GsFit9wqCFXxbH1qBQ4jJij3CPVAZBNXyrrblqqEjIU,293
|
|
11
|
-
tqdm-stubs/asyncio.pyi,sha256=
|
|
11
|
+
tqdm-stubs/asyncio.pyi,sha256=MlMyvQWS-2-MdeoDHs6dKgEtrq9FFFoveDuh3nQ0nuw,6925
|
|
12
12
|
tqdm-stubs/auto.pyi,sha256=8RJDFoPQaBtQ8yT8LPARx10TejsmjNR3cpsfRXI4d7s,82
|
|
13
13
|
tqdm-stubs/autonotebook.pyi,sha256=WrSkCwCPlEr4ddhHaCZCfuGpl8x0hDqoJ3ExQAiaUOk,78
|
|
14
14
|
tqdm-stubs/cli.pyi,sha256=9FlZfH2kM9f8FWUwtJf1BOmB43NM9P-76eBHucdKuLg,123
|
|
15
15
|
tqdm-stubs/dask.pyi,sha256=pkl8VHGFIe9YUJuJWG29t_QeNzjNvlNnkJOzgcZgO3U,939
|
|
16
16
|
tqdm-stubs/gui.pyi,sha256=qyA3QugzBDjxfBJGiTn-sAT9ZcrLEyBq3cLRxxjW5PY,2868
|
|
17
|
-
tqdm-stubs/keras.pyi,sha256=
|
|
17
|
+
tqdm-stubs/keras.pyi,sha256=aaQeZv1UFmWtwEpxQ9EJzVH1PGrBJS228xFGQ_3Hkxk,2199
|
|
18
18
|
tqdm-stubs/notebook.pyi,sha256=NOgkD_f27YuW5Cc-d3dRFs6WUnyMtkd_hOBuPJo2_8s,3316
|
|
19
19
|
tqdm-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
tqdm-stubs/rich.pyi,sha256=v-jj1DoxGsissgdklg2V4HPBFTYKRwV37lOaCPy70ko,3459
|
|
21
|
-
tqdm-stubs/std.pyi,sha256=
|
|
22
|
-
tqdm-stubs/tk.pyi,sha256=
|
|
21
|
+
tqdm-stubs/std.pyi,sha256=7-tW7HcZa1kRKIRmRvPuJmzQPHUHAb6Yb5szJspz8U0,10116
|
|
22
|
+
tqdm-stubs/tk.pyi,sha256=5T-knrGbZDgAGoAG35_TFgoImVsaW16Cb6-BS7tbYqM,3082
|
|
23
23
|
tqdm-stubs/utils.pyi,sha256=bdaoA6ZuWMJHU1xEAZ3AG0mr6yJBpylCu0IInqh2dWU,2063
|
|
24
24
|
tqdm-stubs/version.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
|
25
|
-
tqdm-stubs/contrib/__init__.pyi,sha256=
|
|
25
|
+
tqdm-stubs/contrib/__init__.pyi,sha256=ohZKkxSutx1NWD96NGfEO-EXSU0tqiPqA1ZPvkjUz4k,643
|
|
26
26
|
tqdm-stubs/contrib/bells.pyi,sha256=oFr86WYz2ffMnvRNWVCF6WxtoDgEeJPHXhUd7dd9j6s,80
|
|
27
27
|
tqdm-stubs/contrib/concurrent.pyi,sha256=dctlaypnBYiOZqjT7y9wPdL2zheZeZsiyRPxMC6Xh5A,144
|
|
28
28
|
tqdm-stubs/contrib/discord.pyi,sha256=m0-06z_LoTvGWlDyUvmWJdLyZbU_m_w9pl3ylhlEs70,3285
|
|
@@ -31,8 +31,8 @@ tqdm-stubs/contrib/logging.pyi,sha256=gXU-1y7GFsoH-zqtxwIQEdocMCl6kWtqAg8qcscgmH
|
|
|
31
31
|
tqdm-stubs/contrib/slack.pyi,sha256=sikJvfoFbWyWVMULWE0uALrvh-kz5KYp_z6sd5sOKx0,3106
|
|
32
32
|
tqdm-stubs/contrib/telegram.pyi,sha256=BMDCPAwPnZvTBUXLuUZXEuqfGAhGWHkyvElddxSgsc0,3296
|
|
33
33
|
tqdm-stubs/contrib/utils_worker.pyi,sha256=C6zWnwLzTFMWEPdLk-EwT2pLRFrJndkqH4MIjJsEcV4,480
|
|
34
|
-
types_tqdm-4.67.0.
|
|
35
|
-
types_tqdm-4.67.0.
|
|
36
|
-
types_tqdm-4.67.0.
|
|
37
|
-
types_tqdm-4.67.0.
|
|
38
|
-
types_tqdm-4.67.0.
|
|
34
|
+
types_tqdm-4.67.0.20250516.dist-info/licenses/LICENSE,sha256=KV-FOMlK5cMEMwHPfP8chS2ranhqjd7kceBhtA1eyr4,12657
|
|
35
|
+
types_tqdm-4.67.0.20250516.dist-info/METADATA,sha256=IYtvIRMO6L07d8LxIDJmLi1uwty_SWFj06yrdAarIfw,1805
|
|
36
|
+
types_tqdm-4.67.0.20250516.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
37
|
+
types_tqdm-4.67.0.20250516.dist-info/top_level.txt,sha256=kIt5gMq9VgDZ26WhgdWmbKuKakT0AyLTo-5C-I3j5TM,11
|
|
38
|
+
types_tqdm-4.67.0.20250516.dist-info/RECORD,,
|
{types_tqdm-4.67.0.20250417.dist-info → types_tqdm-4.67.0.20250516.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|