Metadata-Version: 2.3
Name: atpbar
Version: 2.0.4
Summary: Progress bars for threading and multiprocessing tasks
Project-URL: Homepage, https://github.com/alphatwirl/atpbar
Author-email: Tai Sakuma <tai.sakuma@gmail.com>
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Requires-Dist: typing-extensions>=4.12; python_version < '3.10'
Provides-Extra: doc
Requires-Dist: mkdocs-material>=9.5; extra == 'doc'
Requires-Dist: pymdown-extensions>=10.8; extra == 'doc'
Provides-Extra: jupyter
Requires-Dist: ipywidgets>=8.1; extra == 'jupyter'
Provides-Extra: tests
Requires-Dist: hypothesis>=6.102.6; extra == 'tests'
Requires-Dist: pytest-console-scripts>=1.4; extra == 'tests'
Requires-Dist: pytest-cov>=5.0; extra == 'tests'
Requires-Dist: pytest>=8.2; extra == 'tests'
Description-Content-Type: text/markdown

[![PyPI - Version](https://img.shields.io/pypi/v/atpbar.svg)](https://pypi.org/project/atpbar)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/atpbar.svg)](https://pypi.org/project/atpbar)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/atpbar/badges/version.svg)](https://anaconda.org/conda-forge/atpbar)
[![DOI](https://zenodo.org/badge/doi/10.5281/zenodo.2567283.svg)](https://doi.org/10.5281/zenodo.2567283)

[![Test Status](https://github.com/alphatwirl/atpbar/actions/workflows/unit-test.yml/badge.svg)](https://github.com/alphatwirl/atpbar/actions/workflows/unit-test.yml)
[![Test Status](https://github.com/alphatwirl/atpbar/actions/workflows/type-check.yml/badge.svg)](https://github.com/alphatwirl/atpbar/actions/workflows/type-check.yml)
[![codecov](https://codecov.io/gh/alphatwirl/atpbar/branch/master/graph/badge.svg)](https://codecov.io/gh/alphatwirl/atpbar)

# atpbar

_Progress bars_ for threading and multiprocessing tasks on the terminal and
Jupyter Notebook.

![Demo](demo.svg)

_atpbar_ can display multiple progress bars simultaneously growing to show the
progress of each iteration of loops in
[threading](https://docs.python.org/3/library/threading.html) or
[multiprocessing](https://docs.python.org/3/library/multiprocessing.html)
tasks. _atpbar_ can display progress bars on the terminal and [Jupyter
Notebook](https://jupyter.org/).

**Documentation**: <https://alphatwirl.github.io/atpbar/>
