types-tqdm 4.66.0.2__py3-none-any.whl → 4.66.0.4__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 CHANGED
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Awaitable, Callable, Generator, Iterable, Iterator, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
  from typing_extensions import Self
5
5
 
6
6
  from .std import tqdm as std_tqdm
@@ -9,7 +9,7 @@ __all__ = ["tqdm_asyncio", "tarange", "tqdm", "trange"]
9
9
 
10
10
  _T = TypeVar("_T")
11
11
 
12
- class tqdm_asyncio(std_tqdm[_T], Generic[_T]):
12
+ class tqdm_asyncio(std_tqdm[_T]):
13
13
  iterable_awaitable: bool
14
14
  iterable_next: Callable[[], _T | Awaitable[_T]]
15
15
  iterable_iterator: Iterator[_T]
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Iterable, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
 
5
5
  from ..auto import tqdm as tqdm_auto
6
6
  from .utils_worker import MonoWorker
@@ -15,7 +15,7 @@ class DiscordIO(MonoWorker):
15
15
 
16
16
  _T = TypeVar("_T")
17
17
 
18
- class tqdm_discord(tqdm_auto[_T], Generic[_T]):
18
+ class tqdm_discord(tqdm_auto[_T]):
19
19
  dio: Incomplete
20
20
  @overload
21
21
  def __init__(
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Iterable, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
 
5
5
  from ..auto import tqdm as tqdm_auto
6
6
  from .utils_worker import MonoWorker
@@ -16,7 +16,7 @@ class SlackIO(MonoWorker):
16
16
 
17
17
  _T = TypeVar("_T")
18
18
 
19
- class tqdm_slack(tqdm_auto[_T], Generic[_T]):
19
+ class tqdm_slack(tqdm_auto[_T]):
20
20
  sio: Incomplete
21
21
  @overload
22
22
  def __init__(
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Iterable, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
 
5
5
  from ..auto import tqdm as tqdm_auto
6
6
  from .utils_worker import MonoWorker
@@ -21,7 +21,7 @@ class TelegramIO(MonoWorker):
21
21
 
22
22
  _T = TypeVar("_T")
23
23
 
24
- class tqdm_telegram(tqdm_auto[_T], Generic[_T]):
24
+ class tqdm_telegram(tqdm_auto[_T]):
25
25
  tgio: Incomplete
26
26
  @overload
27
27
  def __init__(
tqdm-stubs/gui.pyi CHANGED
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Iterable, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
 
5
5
  from .std import tqdm as std_tqdm
6
6
 
@@ -8,7 +8,7 @@ __all__ = ["tqdm_gui", "tgrange", "tqdm", "trange"]
8
8
 
9
9
  _T = TypeVar("_T")
10
10
 
11
- class tqdm_gui(std_tqdm[_T], Generic[_T]):
11
+ class tqdm_gui(std_tqdm[_T]):
12
12
  mpl: Incomplete
13
13
  plt: Incomplete
14
14
  toolbar: Incomplete
tqdm-stubs/notebook.pyi CHANGED
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Iterable, Iterator, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
 
5
5
  from .std import tqdm as std_tqdm, trange as trange
6
6
 
@@ -8,7 +8,7 @@ __all__ = ["tqdm_notebook", "tnrange", "tqdm", "trange"]
8
8
 
9
9
  _T = TypeVar("_T")
10
10
 
11
- class tqdm_notebook(std_tqdm[_T], Generic[_T]):
11
+ class tqdm_notebook(std_tqdm[_T]):
12
12
  @staticmethod
13
13
  def status_printer(
14
14
  _: SupportsWrite[str] | None, total: float | None = None, desc: str | None = None, ncols: int | None = None
tqdm-stubs/rich.pyi CHANGED
@@ -1,12 +1,14 @@
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 Generic, NoReturn, TypeVar, overload
4
+ from typing import NoReturn, TypeVar, overload
5
5
 
6
6
  from .std import tqdm as std_tqdm
7
7
 
8
8
  __all__ = ["tqdm_rich", "trrange", "tqdm", "trange"]
9
9
 
10
+ _T = TypeVar("_T")
11
+
10
12
  # Actually rich.progress.ProgressColumn
11
13
  class _ProgressColumn(ABC):
12
14
  max_refresh: float | None
@@ -31,9 +33,7 @@ class RateColumn(_ProgressColumn):
31
33
  def __init__(self, unit: str = ..., unit_scale: bool = ..., unit_divisor: int = ...) -> None: ...
32
34
  def render(self, task): ...
33
35
 
34
- _T = TypeVar("_T")
35
-
36
- class tqdm_rich(std_tqdm[_T], Generic[_T]):
36
+ class tqdm_rich(std_tqdm[_T]):
37
37
  def close(self) -> None: ...
38
38
  def clear(self, *_, **__) -> None: ...
39
39
  def display(self, *_, **__) -> None: ...
tqdm-stubs/std.pyi CHANGED
@@ -31,7 +31,7 @@ class TqdmMonitorWarning(TqdmWarning, RuntimeWarning): ...
31
31
 
32
32
  _T = TypeVar("_T")
33
33
 
34
- class tqdm(Iterable[_T], Comparable, Generic[_T]):
34
+ class tqdm(Comparable, Generic[_T]):
35
35
  monitor_interval: ClassVar[int]
36
36
  monitor: ClassVar[TMonitor | None]
37
37
 
tqdm-stubs/tk.pyi CHANGED
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete, SupportsWrite
2
2
  from collections.abc import Iterable, Mapping
3
- from typing import Generic, NoReturn, TypeVar, overload
3
+ from typing import NoReturn, TypeVar, overload
4
4
 
5
5
  from .std import tqdm as std_tqdm
6
6
 
@@ -8,7 +8,7 @@ __all__ = ["tqdm_tk", "ttkrange", "tqdm", "trange"]
8
8
 
9
9
  _T = TypeVar("_T")
10
10
 
11
- class tqdm_tk(std_tqdm[_T], Generic[_T]):
11
+ class tqdm_tk(std_tqdm[_T]):
12
12
  @overload
13
13
  def __init__(
14
14
  self,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: types-tqdm
3
- Version: 4.66.0.2
3
+ Version: 4.66.0.4
4
4
  Summary: Typing stubs for tqdm
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 tqdm
17
18
 
18
- This is a PEP 561 type stub package for the `tqdm` package. It
19
- can be used by type-checking tools like
19
+ This is a [PEP 561](https://peps.python.org/pep-0561/)
20
+ type stub package for the [`tqdm`](https://github.com/tqdm/tqdm) 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
- `tqdm`. The source for this package can be found at
26
+ `tqdm`.
27
+
28
+ This version of `types-tqdm` aims to provide accurate annotations
29
+ for `tqdm==4.66.*`.
30
+ The source for this package can be found at
25
31
  https://github.com/python/typeshed/tree/main/stubs/tqdm. 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 `2c1db0076145f16c25989a0ed3569e61fc70cefe` and was tested
30
- with mypy 1.5.1, pyright 1.1.323, and
31
- pytype 2023.8.14.
35
+ This package was generated from typeshed commit `820be9bfe94a14b7b5b8a265806f4523d564cedf` and was tested
36
+ with mypy 1.6.1, pyright 1.1.334, and
37
+ pytype 2023.10.17.
@@ -8,29 +8,29 @@ tqdm-stubs/_tqdm_gui.pyi,sha256=e1LJPVAcH9DCBo1CtWjAZB_tfTAkwvbKb0swGa69IBU,104
8
8
  tqdm-stubs/_tqdm_notebook.pyi,sha256=ylKP89Oq4LO9Alhbf5sTUVqo9KfPof77DKzMBuepjlw,114
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=EKn_fxaAVafWiVql7QNEstTc1eZ1E7kJRIz6ieoIZf0,6926
11
+ tqdm-stubs/asyncio.pyi,sha256=0UhdhuDISRbO-Cf9eUsNsRNg-Xif4gFDSbCtuz6ABrY,6904
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
- tqdm-stubs/gui.pyi,sha256=VmPkh7LRv0-X26aVGTqA0cQkm3U-p_x0boZthsz4iGM,2890
16
+ tqdm-stubs/gui.pyi,sha256=qyA3QugzBDjxfBJGiTn-sAT9ZcrLEyBq3cLRxxjW5PY,2868
17
17
  tqdm-stubs/keras.pyi,sha256=8TUbtDQLCkEv-T2Zfs7NMl1wexOuooL-NZbEMd9TTLU,2346
18
- tqdm-stubs/notebook.pyi,sha256=jSYYhFjKiKDXFyRadmpHRoQvBa4vxMCZqHZC3p_lLeE,3338
19
- tqdm-stubs/rich.pyi,sha256=NOmffsyqrfK2X5tGhj3ZS2YnDYZw4cYhPCFgdQwZj50,3547
20
- tqdm-stubs/std.pyi,sha256=unXuhY9C2EenumX_CFBy-yUjm8BsHS3-DFFiDfjni00,9850
21
- tqdm-stubs/tk.pyi,sha256=OsSSQ0PqxaYl0uvjB9QaFRUv_xDDwhdzMJbcLp9hwyU,3125
18
+ tqdm-stubs/notebook.pyi,sha256=NOgkD_f27YuW5Cc-d3dRFs6WUnyMtkd_hOBuPJo2_8s,3316
19
+ tqdm-stubs/rich.pyi,sha256=0VKOva8s-xcFMAEZ4CTYuYfjMHXvmldpwbARXlWk3-o,3525
20
+ tqdm-stubs/std.pyi,sha256=bcyyom4SRSTzmyUB1ig-R_8rIsFqG-hUR6W0r9oNtV8,9836
21
+ tqdm-stubs/tk.pyi,sha256=9rsQjSxcMzCSGSQjaqyOj3daS9E-8xOgUjBFANLjIYk,3103
22
22
  tqdm-stubs/utils.pyi,sha256=bdaoA6ZuWMJHU1xEAZ3AG0mr6yJBpylCu0IInqh2dWU,2063
23
23
  tqdm-stubs/version.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
24
24
  tqdm-stubs/contrib/__init__.pyi,sha256=GpO_YNv6kgek1vJQJevHFRo4hmko6iMO_nC98s320Ms,664
25
25
  tqdm-stubs/contrib/bells.pyi,sha256=oFr86WYz2ffMnvRNWVCF6WxtoDgEeJPHXhUd7dd9j6s,80
26
26
  tqdm-stubs/contrib/concurrent.pyi,sha256=dctlaypnBYiOZqjT7y9wPdL2zheZeZsiyRPxMC6Xh5A,144
27
- tqdm-stubs/contrib/discord.pyi,sha256=xL1Q1ukLo7-m-A6hM5LXj5ZqFCyxu4sDSdv1MU773-g,3040
27
+ tqdm-stubs/contrib/discord.pyi,sha256=uvD89KnOJBHOVhKwj3DGd0-N9vetB3s8w11Y7zSPGEM,3018
28
28
  tqdm-stubs/contrib/itertools.pyi,sha256=rLCau4I1hk7qFVIZxSn71Y3_cHdAayJEgVLp2XJxTuY,208
29
29
  tqdm-stubs/contrib/logging.pyi,sha256=-fCX9HNTp5FXFjd-Gx1HmRaKBUodZMC1J6Ge2SWBh9Q,858
30
- tqdm-stubs/contrib/slack.pyi,sha256=F9mlkfwbxv2vhZR32LKVK17NE6OQPIMUKVCVVBCPzVg,3128
31
- tqdm-stubs/contrib/telegram.pyi,sha256=FWN59Ze_7vShvAe1KW_UsJJJf11dypiUw0BWWEW4muY,3318
30
+ tqdm-stubs/contrib/slack.pyi,sha256=isi7YprhA912DReyNrPjoP_-w4--QyDOhv3xTiaamx8,3106
31
+ tqdm-stubs/contrib/telegram.pyi,sha256=yyFoUjzRJ_7wT8gr9RvB7eHCrutyMcaqInSZr7d6xEQ,3296
32
32
  tqdm-stubs/contrib/utils_worker.pyi,sha256=C6zWnwLzTFMWEPdLk-EwT2pLRFrJndkqH4MIjJsEcV4,480
33
- types_tqdm-4.66.0.2.dist-info/METADATA,sha256=ZVmvGxlfQ3Gcje_5nZJjHaBYobN9r9feB7-kTh50Nbw,1344
34
- types_tqdm-4.66.0.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
35
- types_tqdm-4.66.0.2.dist-info/top_level.txt,sha256=kIt5gMq9VgDZ26WhgdWmbKuKakT0AyLTo-5C-I3j5TM,11
36
- types_tqdm-4.66.0.2.dist-info/RECORD,,
33
+ types_tqdm-4.66.0.4.dist-info/METADATA,sha256=c-JTYrAC7uQPgCPRufQymXERuiDGhBUcMUc6uhipziU,1524
34
+ types_tqdm-4.66.0.4.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
35
+ types_tqdm-4.66.0.4.dist-info/top_level.txt,sha256=kIt5gMq9VgDZ26WhgdWmbKuKakT0AyLTo-5C-I3j5TM,11
36
+ types_tqdm-4.66.0.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.41.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5