(
*,
length: int,
label: str | None = None,
hidden: bool = False,
show_eta: bool = True,
show_percent: bool | None = None,
show_pos: bool = False,
fill_char: str = "#",
empty_char: str = "-",
bar_template: str = "%(label)s [%(bar)s] %(info)s",
info_sep: str = " ",
width: int = 36,
file: t.TextIO | None = None,
color: bool | None = None,
update_min_steps: int = 1,
)
| 354 | |
| 355 | @t.overload |
| 356 | def progressbar( |
| 357 | *, |
| 358 | length: int, |
| 359 | label: str | None = None, |
| 360 | hidden: bool = False, |
| 361 | show_eta: bool = True, |
| 362 | show_percent: bool | None = None, |
| 363 | show_pos: bool = False, |
| 364 | fill_char: str = "#", |
| 365 | empty_char: str = "-", |
| 366 | bar_template: str = "%(label)s [%(bar)s] %(info)s", |
| 367 | info_sep: str = " ", |
| 368 | width: int = 36, |
| 369 | file: t.TextIO | None = None, |
| 370 | color: bool | None = None, |
| 371 | update_min_steps: int = 1, |
| 372 | ) -> ProgressBar[int]: ... |
| 373 | |
| 374 | |
| 375 | @t.overload |
searching dependent graphs…