##############################################################################
Text progress bar library for Python.
##############################################################################
Build status:
.. image:: https://github.com/WoLpH/python-progressbar/actions/workflows/main.yml/badge.svg
:alt: python-progressbar test status
:target: https://github.com/WoLpH/python-progressbar/actions
Coverage:
.. image:: https://coveralls.io/repos/WoLpH/python-progressbar/badge.svg?branch=master
:target: https://coveralls.io/r/WoLpH/python-progressbar?branch=master
******************************************************************************
Install
******************************************************************************
The package can be installed through `pip` (this is the recommended method):
pip install progressbar2
Or if `pip` is not available, `easy_install` should work as well:
easy_install progressbar2
Or download the latest release from Pypi (https://pypi.python.org/pypi/progressbar2) or Github.
Note that the releases on Pypi are signed with my GPG key (https://pgp.mit.edu/pks/lookup?op=vindex&search=0xE81444E9CE1F695D) and can be checked using GPG:
gpg --verify progressbar2-<version>.tar.gz.asc progressbar2-<version>.tar.gz
******************************************************************************
Introduction
******************************************************************************
A text progress bar is typically used to display the progress of a long
running operation, providing a visual cue that processing is underway.
The progressbar is based on the old Python progressbar package that was published on the now defunct Google Code. Since that project was completely abandoned by its developer and the developer did not respond to email, I decided to fork the package. This package is still backwards compatible with the original progressbar package so you can safely use it as a drop-in replacement for existing project.
The ProgressBar class manages the current progress, and the format of the line
is given by a number of widgets. A widget is an object that may display
differently depending on the state of the progress bar. There are many types
of widgets:
- `AbsoluteETA <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AbsoluteETA>`_
- `AdaptiveETA <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AdaptiveETA>`_
- `AdaptiveTransferSpeed <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AdaptiveTransferSpeed>`_
- `AnimatedMarker <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AnimatedMarker>`_
- `Bar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Bar>`_
- `BouncingBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#BouncingBar>`_
- `Counter <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Counter>`_
- `CurrentTime <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#CurrentTime>`_
- `DataSize <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#DataSize>`_
- `DynamicMessage <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#DynamicMessage>`_
- `ETA <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#ETA>`_
- `FileTransferSpeed <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FileTransferSpeed>`_
- `FormatCustomText <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FormatCustomText>`_
- `FormatLabel <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FormatLabel>`_
- `FormatLabelBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FormatLabel>`_
- `GranularBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#GranularBar>`_
- `Percentage <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Percentage>`_
- `PercentageLabelBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#PercentageLabelBar>`_
- `ReverseBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#ReverseBar>`_
- `RotatingMarker <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#RotatingMarker>`_
- `SimpleProgress <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#SimpleProgress>`_
- `Timer <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Timer>`_
The progressbar module is very easy to use, yet very powerful. It will also
automatically enable features like auto-resizing when the system supports it.
******************************************************************************
Known issues
******************************************************************************
- The Jetbrains (PyCharm, etc) editors work out of the box, but for more advanced features such as the `MultiBar` support you will need to enable the "Enable terminal in output console" checkbox in the Run dialog.
- The IDLE editor doesn't support these types of progress bars at all: https://bugs.python.org/issue23220
- Jupyter notebooks buffer `sys.stdout` which can cause mixed output. This issue can be resolved easily using: `import sys; sys.stdout.flush()`. Linked issue: https://github.com/WoLpH/python-progressbar/issues/173
******************************************************************************
Links
******************************************************************************
* Documentation
- https://progressbar-2.readthedocs.org/en/latest/
* Source
- https://github.com/WoLpH/python-progressbar
* Bug reports
- https://github.com/WoLpH/python-progressbar/issues
* Package homepage
- https://pypi.python.org/pypi/progressbar2
* My blog
- https://w.wol.ph/
******************************************************************************
Usage
******************************************************************************
There are many ways to use Python Progressbar, you can see a few basic examples
here but there are many more in the examples file.
Wrapping an iterable
==============================================================================
.. code:: python
import time
import progressbar
for i in progressbar.progressbar(range(100)):
time.sleep(0.02)
Progressbars with logging
==============================================================================
Progressbars with logging require `stderr` redirection _before_ the
`StreamHandler` is initialized. To make sure the `stderr` stream has been
redirected on time make sure to call `progressbar.streams.wrap_stderr()` before
you initialize the `logger`.
One option to force early initialization is by using the `WRAP_STDERR`
environment variable, on Linux/Unix systems this can be done through:
.. code:: sh
# WRAP_STDERR=true python your_script.py
If you need to flush manually while wrapping, you can do so using:
.. code:: python
import progressbar
progressbar.streams.flush()
In most cases the following will work as well, as long as you initialize the
`StreamHandler` after the wrapping has taken place.
.. code:: python
import time
import logging
import progressbar
progressbar.streams.wrap_stderr()
logging.basicConfig()
for i in progressbar.progressbar(range(10)):
logging.error('Got %d', i)
time.sleep(0.2)
Multiple (threaded) progressbars
==============================================================================
.. code:: python
import random
import threading
import time
import progressbar
BARS = 5
N = 50
def do_something(bar):
for i in bar(range(N)):
# Sleep up to 0.1 seconds
time.sleep(random.random() * 0.1)
# print messages at random intervals to show how extra output works
if random.random() > 0.9:
bar.print('random message for bar', bar, i)
with progressbar.MultiBar() as multibar:
for i in range(BARS):
# Get a progressbar
bar = multibar[f'Thread label here {i}']
# Create a thread and pass the progressbar
threading.Thread(target=do_something, args=(bar,)).start()
Context wrapper
==============================================================================
.. code:: python
import time
import progressbar
with progressbar.ProgressBar(max_value=10) as bar:
for i in range(10):
time.sleep(0.1)
bar.update(i)
Combining progressbars with print output
==============================================================================
.. code:: python
import time
import progressbar
for i in progressbar.progressbar(range(100), redirect_stdout=True):
print('Some text', i)
time.sleep(0.1)
Progressbar with unknown length
==============================================================================
.. code:: python
import time
import progressbar
bar = progressbar.ProgressBar(max_value=progressbar.UnknownLength)
for i in range(20):
time.sleep(0.1)
bar.update(i)
Bar with custom widgets
==============================================================================
.. code:: python
import time
import progressbar
widgets=[
' [', progressbar.Timer(), '] ',
progressbar.Bar(),
' (', progressbar.ETA(), ') ',
]
for i in progressbar.progressbar(range(20), widgets=widgets):
time.sleep(0.1)
Bar with wide Chinese (or other multibyte) characters
==============================================================================
.. code:: python
# vim: fileencoding=utf-8
import time
import progressbar
def custom_len(value):
# These characters take up more space
characters = {
'进': 2,
'度': 2,
}
total = 0
for c in value:
total += characters.get(c, 1)
return total
bar = progressbar.ProgressBar(
widgets=[
'进度: ',
progressbar.Bar(),
' ',
progressbar.Counter(format='%(value)02d/%(max_value)d'),
],
len_func=custom_len,
)
for i in bar(range(10)):
time.sleep(0.1)
Showing multiple independent progress bars in parallel
==============================================================================
.. code:: python
import random
import sys
import time
import progressbar
BARS = 5
N = 100
# Construct the list of progress bars with the `line_offset` so they draw
# below each other
bars = []
for i in range(BARS):
bars.append(
progressbar.ProgressBar(
max_value=N,
# We add 1 to the line offset to account for the `print_fd`
line_offset=i + 1,
max_error=False,
)
)
# Create a file descriptor for regular printing as well
print_fd = progressbar.LineOffsetStreamWrapper(lines=0, stream=sys.stdout)
# The progress bar updates, normally you would do something useful here
for i in range(N * BARS):
time.sleep(0.005)
# Increment one of the progress bars at random
bars[random.randrange(0, BARS)].increment()
# Print a status message to the `print_fd` below the progress bars
print(f'Hi, we are at update {i+1} of {N * BARS}', file=print_fd)
# Cleanup the bars
for bar in bars:
bar.finish()
# Add a newline to make sure the next print starts on a new line
print()
******************************************************************************
Naturally we can do this from separate threads as well:
.. code:: python
import random
import threading
import time
import progressbar
BARS = 5
N = 100
# Create the bars with the given line offset
bars = []
for line_offset in range(BARS):
bars.append(progressbar.ProgressBar(line_offset=line_offset, max_value=N))
class Worker(threading.Thread):
def __init__(self, bar):
super().__init__()
self.bar = bar
def run(self):
for i in range(N):
time.sleep(random.random() / 25)
self.bar.update(i)
for bar in bars:
Worker(bar).start()
print()
Raw data
{
"_id": null,
"home_page": null,
"name": "progressbar2",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "REPL, animated, bar, color, console, duration, efficient, elapsed, eta, feedback, live, meter, monitor, monitoring, multi-threaded, progress, progress-bar, progressbar, progressmeter, python, rate, simple, speed, spinner, stats, terminal, throughput, time, visual",
"author": null,
"author_email": "\"Rick van Hattem (Wolph)\" <wolph@wol.ph>",
"download_url": "https://files.pythonhosted.org/packages/19/24/3587e795fc590611434e4bcb9fbe0c3dddb5754ce1a20edfd86c587c0004/progressbar2-4.5.0.tar.gz",
"platform": null,
"description": "##############################################################################\nText progress bar library for Python.\n##############################################################################\n\nBuild status:\n\n.. image:: https://github.com/WoLpH/python-progressbar/actions/workflows/main.yml/badge.svg\n :alt: python-progressbar test status \n :target: https://github.com/WoLpH/python-progressbar/actions\n\nCoverage:\n\n.. image:: https://coveralls.io/repos/WoLpH/python-progressbar/badge.svg?branch=master\n :target: https://coveralls.io/r/WoLpH/python-progressbar?branch=master\n\n******************************************************************************\nInstall\n******************************************************************************\n\nThe package can be installed through `pip` (this is the recommended method):\n\n pip install progressbar2\n\nOr if `pip` is not available, `easy_install` should work as well:\n\n easy_install progressbar2\n\nOr download the latest release from Pypi (https://pypi.python.org/pypi/progressbar2) or Github.\n\nNote that the releases on Pypi are signed with my GPG key (https://pgp.mit.edu/pks/lookup?op=vindex&search=0xE81444E9CE1F695D) and can be checked using GPG:\n\n gpg --verify progressbar2-<version>.tar.gz.asc progressbar2-<version>.tar.gz\n\n******************************************************************************\nIntroduction\n******************************************************************************\n\nA text progress bar is typically used to display the progress of a long\nrunning operation, providing a visual cue that processing is underway.\n\nThe progressbar is based on the old Python progressbar package that was published on the now defunct Google Code. Since that project was completely abandoned by its developer and the developer did not respond to email, I decided to fork the package. This package is still backwards compatible with the original progressbar package so you can safely use it as a drop-in replacement for existing project.\n\nThe ProgressBar class manages the current progress, and the format of the line\nis given by a number of widgets. A widget is an object that may display\ndifferently depending on the state of the progress bar. There are many types\nof widgets:\n\n - `AbsoluteETA <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AbsoluteETA>`_\n - `AdaptiveETA <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AdaptiveETA>`_\n - `AdaptiveTransferSpeed <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AdaptiveTransferSpeed>`_\n - `AnimatedMarker <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#AnimatedMarker>`_\n - `Bar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Bar>`_\n - `BouncingBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#BouncingBar>`_\n - `Counter <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Counter>`_\n - `CurrentTime <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#CurrentTime>`_\n - `DataSize <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#DataSize>`_\n - `DynamicMessage <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#DynamicMessage>`_\n - `ETA <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#ETA>`_\n - `FileTransferSpeed <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FileTransferSpeed>`_\n - `FormatCustomText <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FormatCustomText>`_\n - `FormatLabel <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FormatLabel>`_\n - `FormatLabelBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#FormatLabel>`_\n - `GranularBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#GranularBar>`_\n - `Percentage <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Percentage>`_\n - `PercentageLabelBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#PercentageLabelBar>`_\n - `ReverseBar <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#ReverseBar>`_\n - `RotatingMarker <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#RotatingMarker>`_\n - `SimpleProgress <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#SimpleProgress>`_\n - `Timer <http://progressbar-2.readthedocs.io/en/latest/_modules/progressbar/widgets.html#Timer>`_\n\nThe progressbar module is very easy to use, yet very powerful. It will also\nautomatically enable features like auto-resizing when the system supports it.\n\n******************************************************************************\nKnown issues\n******************************************************************************\n\n- The Jetbrains (PyCharm, etc) editors work out of the box, but for more advanced features such as the `MultiBar` support you will need to enable the \"Enable terminal in output console\" checkbox in the Run dialog.\n- The IDLE editor doesn't support these types of progress bars at all: https://bugs.python.org/issue23220\n- Jupyter notebooks buffer `sys.stdout` which can cause mixed output. This issue can be resolved easily using: `import sys; sys.stdout.flush()`. Linked issue: https://github.com/WoLpH/python-progressbar/issues/173\n\n******************************************************************************\nLinks\n******************************************************************************\n\n* Documentation\n - https://progressbar-2.readthedocs.org/en/latest/\n* Source\n - https://github.com/WoLpH/python-progressbar\n* Bug reports\n - https://github.com/WoLpH/python-progressbar/issues\n* Package homepage\n - https://pypi.python.org/pypi/progressbar2\n* My blog\n - https://w.wol.ph/\n\n******************************************************************************\nUsage\n******************************************************************************\n\nThere are many ways to use Python Progressbar, you can see a few basic examples\nhere but there are many more in the examples file.\n\nWrapping an iterable\n==============================================================================\n.. code:: python\n\n import time\n import progressbar\n\n for i in progressbar.progressbar(range(100)):\n time.sleep(0.02)\n\nProgressbars with logging\n==============================================================================\n\nProgressbars with logging require `stderr` redirection _before_ the\n`StreamHandler` is initialized. To make sure the `stderr` stream has been\nredirected on time make sure to call `progressbar.streams.wrap_stderr()` before\nyou initialize the `logger`.\n\nOne option to force early initialization is by using the `WRAP_STDERR`\nenvironment variable, on Linux/Unix systems this can be done through:\n\n.. code:: sh\n\n # WRAP_STDERR=true python your_script.py\n\nIf you need to flush manually while wrapping, you can do so using:\n\n.. code:: python\n\n import progressbar\n\n progressbar.streams.flush()\n\nIn most cases the following will work as well, as long as you initialize the\n`StreamHandler` after the wrapping has taken place.\n\n.. code:: python\n\n import time\n import logging\n import progressbar\n\n progressbar.streams.wrap_stderr()\n logging.basicConfig()\n\n for i in progressbar.progressbar(range(10)):\n logging.error('Got %d', i)\n time.sleep(0.2)\n\nMultiple (threaded) progressbars\n==============================================================================\n\n.. code:: python\n\n import random\n import threading\n import time\n\n import progressbar\n\n BARS = 5\n N = 50\n\n\n def do_something(bar):\n for i in bar(range(N)):\n # Sleep up to 0.1 seconds\n time.sleep(random.random() * 0.1)\n\n # print messages at random intervals to show how extra output works\n if random.random() > 0.9:\n bar.print('random message for bar', bar, i)\n\n\n with progressbar.MultiBar() as multibar:\n for i in range(BARS):\n # Get a progressbar\n bar = multibar[f'Thread label here {i}']\n # Create a thread and pass the progressbar\n threading.Thread(target=do_something, args=(bar,)).start()\n\nContext wrapper\n==============================================================================\n.. code:: python\n\n import time\n import progressbar\n\n with progressbar.ProgressBar(max_value=10) as bar:\n for i in range(10):\n time.sleep(0.1)\n bar.update(i)\n\nCombining progressbars with print output\n==============================================================================\n.. code:: python\n\n import time\n import progressbar\n\n for i in progressbar.progressbar(range(100), redirect_stdout=True):\n print('Some text', i)\n time.sleep(0.1)\n\nProgressbar with unknown length\n==============================================================================\n.. code:: python\n\n import time\n import progressbar\n\n bar = progressbar.ProgressBar(max_value=progressbar.UnknownLength)\n for i in range(20):\n time.sleep(0.1)\n bar.update(i)\n\nBar with custom widgets\n==============================================================================\n.. code:: python\n\n import time\n import progressbar\n\n widgets=[\n ' [', progressbar.Timer(), '] ',\n progressbar.Bar(),\n ' (', progressbar.ETA(), ') ',\n ]\n for i in progressbar.progressbar(range(20), widgets=widgets):\n time.sleep(0.1)\n\nBar with wide Chinese (or other multibyte) characters\n==============================================================================\n\n.. code:: python\n\n # vim: fileencoding=utf-8\n import time\n import progressbar\n\n\n def custom_len(value):\n # These characters take up more space\n characters = {\n '\u8fdb': 2,\n '\u5ea6': 2,\n }\n\n total = 0\n for c in value:\n total += characters.get(c, 1)\n\n return total\n\n\n bar = progressbar.ProgressBar(\n widgets=[\n '\u8fdb\u5ea6: ',\n progressbar.Bar(),\n ' ',\n progressbar.Counter(format='%(value)02d/%(max_value)d'),\n ],\n len_func=custom_len,\n )\n for i in bar(range(10)):\n time.sleep(0.1)\n\nShowing multiple independent progress bars in parallel\n==============================================================================\n\n.. code:: python\n\n import random\n import sys\n import time\n\n import progressbar\n\n BARS = 5\n N = 100\n\n # Construct the list of progress bars with the `line_offset` so they draw\n # below each other\n bars = []\n for i in range(BARS):\n bars.append(\n progressbar.ProgressBar(\n max_value=N,\n # We add 1 to the line offset to account for the `print_fd`\n line_offset=i + 1,\n max_error=False,\n )\n )\n\n # Create a file descriptor for regular printing as well\n print_fd = progressbar.LineOffsetStreamWrapper(lines=0, stream=sys.stdout)\n\n # The progress bar updates, normally you would do something useful here\n for i in range(N * BARS):\n time.sleep(0.005)\n\n # Increment one of the progress bars at random\n bars[random.randrange(0, BARS)].increment()\n\n # Print a status message to the `print_fd` below the progress bars\n print(f'Hi, we are at update {i+1} of {N * BARS}', file=print_fd)\n\n # Cleanup the bars\n for bar in bars:\n bar.finish()\n\n # Add a newline to make sure the next print starts on a new line\n print()\n\n******************************************************************************\n\nNaturally we can do this from separate threads as well:\n\n.. code:: python\n\n import random\n import threading\n import time\n\n import progressbar\n\n BARS = 5\n N = 100\n\n # Create the bars with the given line offset\n bars = []\n for line_offset in range(BARS):\n bars.append(progressbar.ProgressBar(line_offset=line_offset, max_value=N))\n\n\n class Worker(threading.Thread):\n def __init__(self, bar):\n super().__init__()\n self.bar = bar\n\n def run(self):\n for i in range(N):\n time.sleep(random.random() / 25)\n self.bar.update(i)\n\n\n for bar in bars:\n Worker(bar).start()\n\n print()\n",
"bugtrack_url": null,
"license": "BSD-3-Clause",
"summary": "A Python Progressbar library to provide visual (yet text based) progress to long running operations.",
"version": "4.5.0",
"project_urls": {
"bugs": "https://github.com/wolph/python-progressbar/issues",
"documentation": "https://progressbar-2.readthedocs.io/en/latest/",
"repository": "https://github.com/wolph/python-progressbar/"
},
"split_keywords": [
"repl",
" animated",
" bar",
" color",
" console",
" duration",
" efficient",
" elapsed",
" eta",
" feedback",
" live",
" meter",
" monitor",
" monitoring",
" multi-threaded",
" progress",
" progress-bar",
" progressbar",
" progressmeter",
" python",
" rate",
" simple",
" speed",
" spinner",
" stats",
" terminal",
" throughput",
" time",
" visual"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ee94448f037fb0ffd0e8a63b625cf9f5b13494b88d15573a987be8aaa735579d",
"md5": "433b496fec8e5d9c66c4a2ed7f22511d",
"sha256": "625c94a54e63915b3959355e6d4aacd63a00219e5f3e2b12181b76867bf6f628"
},
"downloads": -1,
"filename": "progressbar2-4.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "433b496fec8e5d9c66c4a2ed7f22511d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 57132,
"upload_time": "2024-08-28T22:50:10",
"upload_time_iso_8601": "2024-08-28T22:50:10.264008Z",
"url": "https://files.pythonhosted.org/packages/ee/94/448f037fb0ffd0e8a63b625cf9f5b13494b88d15573a987be8aaa735579d/progressbar2-4.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19243587e795fc590611434e4bcb9fbe0c3dddb5754ce1a20edfd86c587c0004",
"md5": "3cf0b3721d015689bd6db9b394300d33",
"sha256": "6662cb624886ed31eb94daf61e27583b5144ebc7383a17bae076f8f4f59088fb"
},
"downloads": -1,
"filename": "progressbar2-4.5.0.tar.gz",
"has_sig": false,
"md5_digest": "3cf0b3721d015689bd6db9b394300d33",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 101449,
"upload_time": "2024-08-28T22:50:12",
"upload_time_iso_8601": "2024-08-28T22:50:12.391543Z",
"url": "https://files.pythonhosted.org/packages/19/24/3587e795fc590611434e4bcb9fbe0c3dddb5754ce1a20edfd86c587c0004/progressbar2-4.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-28 22:50:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "wolph",
"github_project": "python-progressbar",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"appveyor": true,
"circle": true,
"tox": true,
"lcname": "progressbar2"
}